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] [tool.poetry]
name = "gallery" name = "gallery"
version = "0.5.0" version = "0.5.1"
description = "" description = ""
authors = ["shmyga <shmyga.z@gmail.com>"] authors = ["shmyga <shmyga.z@gmail.com>"]
readme = "README.md" readme = "README.md"

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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