You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
Markdown
40 lines
1.3 KiB
Markdown
# NPM packages
|
|
|
|
## Update instructions
|
|
|
|
If you update Bootstrap:
|
|
|
|
1. Rename `node_modules/bootstrap/scss/vendor` to `node_modules/bootstrap/scss/_vendor`.
|
|
2. Apply this patch:
|
|
|
|
```diff
|
|
--- a/paige/node_modules/bootstrap/scss/_mixins.scss
|
|
+++ b/paige/node_modules/bootstrap/scss/_mixins.scss
|
|
@@ -3,7 +3,7 @@
|
|
// Used in conjunction with global variables to enable certain theme features.
|
|
|
|
// Vendor
|
|
-@import "vendor/rfs";
|
|
+@import "_vendor/rfs";
|
|
|
|
// Deprecate
|
|
@import "mixins/deprecate";
|
|
diff --git a/paige/node_modules/bootstrap/scss/vendor/_rfs.scss b/paige/node_modules/bootstrap/scss/_vendor/_rfs.scss
|
|
similarity index 100%
|
|
rename from paige/node_modules/bootstrap/scss/vendor/_rfs.scss
|
|
rename to paige/node_modules/bootstrap/scss/_vendor/_rfs.scss
|
|
diff --git a/paige/node_modules/bootstrap/scss/bootstrap-grid.scss b/paige/node_modules/bootstrap/scss/bootstrap-grid.scss
|
|
index 52bd577..c82f6bc 100644
|
|
--- a/paige/node_modules/bootstrap/scss/bootstrap-grid.scss
|
|
+++ b/paige/node_modules/bootstrap/scss/bootstrap-grid.scss
|
|
@@ -13,7 +13,7 @@ $include-column-box-sizing: true !default;
|
|
@import "mixins/grid";
|
|
@import "mixins/utilities";
|
|
|
|
-@import "vendor/rfs";
|
|
+@import "_vendor/rfs";
|
|
|
|
@import "containers";
|
|
@import "grid";
|
|
```
|