@caweb/webpack 1.3.31 → 1.3.33
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/.github/workflows/config-publish.yml +0 -10
- package/.github/workflows/plugins-publish.yml +0 -14
- package/{changelog.txt → CHANGELOG.md} +7 -0
- package/package.json +2 -2
- package/plugins/html/{changelog.txt → CHANGELOG.md} +8 -0
- package/plugins/html/README.md +0 -3
- package/plugins/html/entry/delta.js +1 -0
- package/plugins/html/entry/eureka.js +1 -0
- package/plugins/html/entry/mono.js +1 -0
- package/plugins/html/entry/oceanside.js +1 -0
- package/plugins/html/entry/orangecounty.js +1 -0
- package/plugins/html/entry/pasorobles.js +1 -0
- package/plugins/html/entry/sacramento.js +1 -0
- package/plugins/html/entry/santabarbara.js +1 -0
- package/plugins/html/entry/santacruz.js +1 -0
- package/plugins/html/entry/shasta.js +1 -0
- package/plugins/html/entry/sierra.js +1 -0
- package/plugins/html/entry/trinity.js +1 -0
- package/plugins/html/package-lock.json +897 -828
- package/plugins/html/package.json +10 -8
- package/plugins/html/scripts/create-entrypoints.js +1 -0
- package/plugins/html/webpack.config.js +36 -0
|
@@ -9,17 +9,7 @@ on:
|
|
|
9
9
|
branches:
|
|
10
10
|
- main
|
|
11
11
|
jobs:
|
|
12
|
-
build:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v4
|
|
16
|
-
- uses: actions/setup-node@v4
|
|
17
|
-
with:
|
|
18
|
-
node-version: 20
|
|
19
|
-
- run: npm ci
|
|
20
|
-
- run: npm test
|
|
21
12
|
publish-npm:
|
|
22
|
-
needs: build
|
|
23
13
|
runs-on: ubuntu-latest
|
|
24
14
|
steps:
|
|
25
15
|
- uses: actions/checkout@v4
|
|
@@ -13,21 +13,7 @@ on:
|
|
|
13
13
|
- jshint
|
|
14
14
|
|
|
15
15
|
jobs:
|
|
16
|
-
build:
|
|
17
|
-
runs-on: ubuntu-latest
|
|
18
|
-
defaults:
|
|
19
|
-
run:
|
|
20
|
-
working-directory: plugins/${{ github.ref_name }}
|
|
21
|
-
steps:
|
|
22
|
-
- uses: actions/checkout@v4
|
|
23
|
-
- uses: actions/setup-node@v4
|
|
24
|
-
with:
|
|
25
|
-
node-version: 20
|
|
26
|
-
- run: git submodule update --init
|
|
27
|
-
- run: npm ci
|
|
28
|
-
- run: npm test
|
|
29
16
|
publish-npm:
|
|
30
|
-
needs: build
|
|
31
17
|
runs-on: ubuntu-latest
|
|
32
18
|
defaults:
|
|
33
19
|
run:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caweb/webpack",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.33",
|
|
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.7.
|
|
40
|
+
"@caweb/html-webpack-plugin": "^1.7.2",
|
|
41
41
|
"@caweb/jshint-webpack-plugin": "^2.0.1"
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
v1.7.2
|
|
2
|
+
- Updated npm packages
|
|
3
|
+
- Added @caweb/icon-library when testing
|
|
4
|
+
- Updated entrypoints
|
|
5
|
+
|
|
6
|
+
v1.7.1
|
|
7
|
+
- Updated webpack.config.js
|
|
8
|
+
|
|
1
9
|
v1.7.0
|
|
2
10
|
- All references related to icons have been removed from template source code and move to new @caweb/icon-library package
|
|
3
11
|
|
package/plugins/html/README.md
CHANGED
|
@@ -60,6 +60,3 @@ There are various different scripts that can be ran
|
|
|
60
60
|
|
|
61
61
|
### Creating Entrypoints
|
|
62
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.
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
delta: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/delta.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
eureka: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/eureka.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
mono: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/mono.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
oceanside: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/oceanside.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
orangecounty: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/orangecounty.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
pasorobles: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/pasorobles.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
sacramento: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/sacramento.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
santabarbara: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/santabarbara.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
santacruz: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/santacruz.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
shasta: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/shasta.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
sierra: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/sierra.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|
|
@@ -10,6 +10,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
|
|
|
10
10
|
export default {
|
|
11
11
|
entry: {
|
|
12
12
|
trinity: [
|
|
13
|
+
path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
|
|
13
14
|
path.join(currentPath, '/src/styles/colorschemes/trinity.scss'),
|
|
14
15
|
path.join(currentPath, '/src/scripts/index.js')
|
|
15
16
|
]
|