@caweb/webpack 1.3.13 → 1.3.14
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 +3 -0
- package/package.json +2 -2
- package/plugins/html/README.md +26 -1
- package/plugins/html/changelog.txt +5 -0
- package/plugins/html/package-lock.json +1613 -1025
- package/plugins/html/package.json +16 -6
- package/plugins/html/scripts/schemes.js +123 -0
- package/plugins/html/scripts/update-scripts.js +5 -3
- package/plugins/html/webpack.config.js +5 -0
package/changelog.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/webpack",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.14",
|
|
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.
|
|
40
|
+
"@caweb/html-webpack-plugin": "^1.5.15",
|
|
41
41
|
"@caweb/jshint-webpack-plugin": "^1.0.9"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/plugins/html/README.md
CHANGED
|
@@ -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:<colorscheme></code> - will build that specific colorscheme minified and unminified.
|
|
51
|
+
<code>npm run build:<colorscheme>:prod</code> - will build that specific colorscheme minified only.
|
|
52
|
+
<code>npm run build:<colorscheme>:dev</code> - will build that specific colorscheme unminified only.
|
|
53
|
+
|
|
54
|
+
### Serve
|
|
55
|
+
<code>npm run serve:<colorscheme></code> - will serve that specific colorscheme and also run a11y checks, css audits, jshints.
|
|
56
|
+
<code>npm run serve:<colorscheme>: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,8 @@
|
|
|
1
|
+
v1.5.15
|
|
2
|
+
- Added default styles to nested ul/ol
|
|
3
|
+
- Silencing Dart Sass 3.0.0 deprecation warnings for 'global-builtin', 'import', 'color-functions', 'mixed-decls' until they are removed.
|
|
4
|
+
- Added scheme script to allow for schemes to be easily created/removed.
|
|
5
|
+
|
|
1
6
|
v1.5.14
|
|
2
7
|
- Added changes to dropdown menu popper config
|
|
3
8
|
|