2 Commits
0.5.0 ... 0.5.1

Author SHA1 Message Date
615d385f14 ci(version): 0.5.1 2026-07-10 15:03:32 +03:00
b1bf51c606 fix(static): fix bootstrap usage 2026-07-10 14:49:35 +03:00
7 changed files with 11 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "gallery"
version = "0.5.0"
version = "0.5.1"
description = ""
authors = ["shmyga <shmyga.z@gmail.com>"]
readme = "README.md"

View File

@@ -1,12 +1,12 @@
{
"name": "gallery",
"version": "0.5.0",
"version": "0.5.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "gallery",
"version": "0.5.0",
"version": "0.5.1",
"license": "ISC",
"dependencies": {
"@popperjs/core": "^2.11.8",

View File

@@ -1,6 +1,6 @@
{
"name": "gallery",
"version": "0.5.0",
"version": "0.5.1",
"type": "module",
"scripts": {
"build": "webpack --mode production",

View File

@@ -1,7 +1,3 @@
@import "bootstrap/scss/mixins/banner";
@include bsBanner("");
// scss-docs-start import-stack
// Configuration
@import "bootstrap/scss/functions";

View File

@@ -1,4 +1,5 @@
@import "../lib/bootstrap";
@import "bootstrap/scss/variables";
@import "bootstrap/scss/mixins";
.table.table-compact {
td {

View File

@@ -1,4 +1,5 @@
@import "../lib/bootstrap";
@import "bootstrap/scss/variables";
@import "bootstrap/scss/mixins";
$default-space: 2;

View File

@@ -72,6 +72,9 @@ const config: webpack.Configuration = {
maxEntrypointSize: 512000,
maxAssetSize: 512000,
},
cache: {
type: "filesystem",
},
};
export default config;