@caweb/webpack 1.3.13 → 1.3.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.txt CHANGED
@@ -1,3 +1,9 @@
1
+ v1.3.15
2
+ - Updated npm packages
3
+
4
+ v1.3.14
5
+ - Updated npm packages
6
+
1
7
  v1.3.13
2
8
  - Updated npm packages
3
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/webpack",
3
- "version": "1.3.13",
3
+ "version": "1.3.15",
4
4
  "description": "CAWebPublishing Webpack Configuration",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -37,7 +37,7 @@
37
37
  "dependencies": {
38
38
  "@caweb/a11y-webpack-plugin": "^1.0.9",
39
39
  "@caweb/css-audit-webpack-plugin": "^1.0.12",
40
- "@caweb/html-webpack-plugin": "^1.5.14",
40
+ "@caweb/html-webpack-plugin": "^1.5.16",
41
41
  "@caweb/jshint-webpack-plugin": "^1.0.9"
42
42
  }
43
43
  }
@@ -37,4 +37,29 @@ All html-webpack-plugin [options](https://github.com/jantimon/html-webpack-plugi
37
37
  * santacruz
38
38
  * shasta
39
39
  * sierra
40
- * trinity
40
+ * trinity
41
+
42
+ ## How to use this repository
43
+ There are various different scripts that can be ran
44
+
45
+ ### Build
46
+ <code>npm run build</code> - will build all colorschemes minified and unminified.
47
+ <code>npm run build:prod</code> - will build all colorschemes minified only.
48
+ <code>npm run build:dev</code> - will build all colorschemes unminified only.
49
+
50
+ <code>npm run build:&lt;colorscheme&gt;</code> - will build that specific colorscheme minified and unminified.
51
+ <code>npm run build:&lt;colorscheme&gt;:prod</code> - will build that specific colorscheme minified only.
52
+ <code>npm run build:&lt;colorscheme&gt;:dev</code> - will build that specific colorscheme unminified only.
53
+
54
+ ### Serve
55
+ <code>npm run serve:&lt;colorscheme&gt;</code> - will serve that specific colorscheme and also run a11y checks, css audits, jshints.
56
+ <code>npm run serve:&lt;colorscheme&gt;:quick</code> - will serve that specific colorscheme without running a11y checks, css audits, jshints.
57
+
58
+ ### Update scripts
59
+ <code>npm run update-scripts</code> - This will regenerate the build/serve commands.
60
+
61
+ ### Creating Entrypoints
62
+ <code>npm run create-entrypoint</code> - This will generate a webpack entrypoint for each of the colorschemes in the ./src/styles/colorschemes directory.
63
+
64
+ ### Icon JSON
65
+ <code>npm run generate-json</code> - This will generate an json file based on all the icons in the build/fonts/ directory.
@@ -1,3 +1,13 @@
1
+ v1.5.16
2
+ - Fixed issue with breadcrumbs being numbered
3
+ - Resolved issue with anchor links being hidden behind fixed header
4
+ - Utility header and header alerts now hide when scrolled passed the header
5
+
6
+ v1.5.15
7
+ - Added default styles to nested ul/ol
8
+ - Silencing Dart Sass 3.0.0 deprecation warnings for 'global-builtin', 'import', 'color-functions', 'mixed-decls' until they are removed.
9
+ - Added scheme script to allow for schemes to be easily created/removed.
10
+
1
11
  v1.5.14
2
12
  - Added changes to dropdown menu popper config
3
13