@caweb/webpack 1.3.1 → 1.3.3
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 +6 -0
- package/package.json +2 -2
- package/plugins/html/changelog.txt +9 -0
- package/plugins/html/helpers/object/jsonParse.js +6 -0
- package/plugins/html/helpers/object/jsonStringify.js +6 -0
- package/plugins/html/helpers/string/replace.js +6 -0
- package/plugins/html/helpers/string/toLower.js +6 -0
- package/plugins/html/helpers/string/toTitleCase.js +6 -0
- package/plugins/html/helpers/string/toUpper.js +6 -0
- package/plugins/html/package-lock.json +21973 -21973
- package/plugins/html/package.json +126 -70
- package/plugins/html/scripts/update-scripts.js +46 -0
- package/plugins/html/webpack.config.js +6 -1
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.3",
|
|
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.4",
|
|
41
41
|
"@caweb/jshint-webpack-plugin": "^1.0.9"
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
v1.5.4
|
|
2
|
+
- Updated npm scripts
|
|
3
|
+
- Fixed issue with initial scheme selection for plugin
|
|
4
|
+
- Added toLower, toUpper, toTitleCase, replace, jsonStringify, jsonParse handlebar loader helper functions
|
|
5
|
+
|
|
6
|
+
v1.5.3
|
|
7
|
+
- Updated anchor typography and nav-link variables colors to match schemes
|
|
8
|
+
- Added update scripts script
|
|
9
|
+
|
|
1
10
|
v1.5.2
|
|
2
11
|
- Fixed issue with webpack plugins still being added even when flags are passed
|
|
3
12
|
- Reverted multiple configuration export change back to single config export
|