@caweb/webpack 1.3.32 → 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.
@@ -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:
@@ -1,3 +1,7 @@
1
+ v1.3.33
2
+ - Changelog changed from txt to md
3
+ - Updated npm packages
4
+
1
5
  v1.3.32
2
6
  - Updated npm packages
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/webpack",
3
- "version": "1.3.32",
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.1",
40
+ "@caweb/html-webpack-plugin": "^1.7.2",
41
41
  "@caweb/jshint-webpack-plugin": "^2.0.1"
42
42
  }
43
43
  }
@@ -1,3 +1,8 @@
1
+ v1.7.2
2
+ - Updated npm packages
3
+ - Added @caweb/icon-library when testing
4
+ - Updated entrypoints
5
+
1
6
  v1.7.1
2
7
  - Updated webpack.config.js
3
8
 
@@ -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
  ]
@@ -12,7 +12,7 @@
12
12
  "@caweb/a11y-webpack-plugin": "^1.0.9",
13
13
  "@caweb/css-audit-webpack-plugin": "^1.0.12",
14
14
  "@caweb/jshint-webpack-plugin": "^2.0.1",
15
- "@wordpress/scripts": "^30.13.0",
15
+ "@wordpress/scripts": "^30.14.1",
16
16
  "css-minimizer-webpack-plugin": "^7.0.2",
17
17
  "handlebars-loader": "^1.7.3",
18
18
  "html-webpack-link-type-plugin": "^1.1.1",
@@ -25,13 +25,14 @@
25
25
  "webpack-remove-empty-scripts": "^1.0.4"
26
26
  },
27
27
  "devDependencies": {
28
- "@inquirer/prompts": "^7.4.0",
28
+ "@caweb/icon-library": "^1.0.1",
29
+ "@inquirer/prompts": "^7.4.1",
29
30
  "animate.css": "^4.1.1",
30
- "bootstrap": "^5.3.3",
31
+ "bootstrap": "^5.3.4",
31
32
  "bootstrap-forced-colors-css": "^1.0.7",
32
33
  "chalk": "^5.4.1",
33
34
  "cross-spawn": "^7.0.6",
34
- "fast-xml-parser": "^5.0.9"
35
+ "fast-xml-parser": "^5.2.0"
35
36
  }
36
37
  },
37
38
  "node_modules/@ampproject/remapping": {
@@ -1906,6 +1907,17 @@
1906
1907
  "webpack-cli": "^6.0.1"
1907
1908
  }
1908
1909
  },
1910
+ "node_modules/@caweb/icon-library": {
1911
+ "version": "1.0.1",
1912
+ "resolved": "https://registry.npmjs.org/@caweb/icon-library/-/icon-library-1.0.1.tgz",
1913
+ "integrity": "sha512-zVy/WqiZrJKO6c94O9cPfbmjCl9DXTZEKYXjqaPuPRv/FHPiPa30Eg6TaBcY+3FEZPMadw/G0bJ5RWhe2P5DaQ==",
1914
+ "dev": true,
1915
+ "license": "GPL2",
1916
+ "engines": {
1917
+ "node": ">=18.0.0",
1918
+ "npm": ">=10.0.0"
1919
+ }
1920
+ },
1909
1921
  "node_modules/@caweb/jshint-webpack-plugin": {
1910
1922
  "version": "2.0.1",
1911
1923
  "resolved": "https://registry.npmjs.org/@caweb/jshint-webpack-plugin/-/jshint-webpack-plugin-2.0.1.tgz",
@@ -2305,15 +2317,15 @@
2305
2317
  "license": "BSD-3-Clause"
2306
2318
  },
2307
2319
  "node_modules/@inquirer/checkbox": {
2308
- "version": "4.1.4",
2309
- "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.1.4.tgz",
2310
- "integrity": "sha512-d30576EZdApjAMceijXA5jDzRQHT/MygbC+J8I7EqA6f/FRpYxlRtRJbHF8gHeWYeSdOuTEJqonn7QLB1ELezA==",
2320
+ "version": "4.1.5",
2321
+ "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.1.5.tgz",
2322
+ "integrity": "sha512-swPczVU+at65xa5uPfNP9u3qx/alNwiaykiI/ExpsmMSQW55trmZcwhYWzw/7fj+n6Q8z1eENvR7vFfq9oPSAQ==",
2311
2323
  "dev": true,
2312
2324
  "license": "MIT",
2313
2325
  "dependencies": {
2314
- "@inquirer/core": "^10.1.9",
2326
+ "@inquirer/core": "^10.1.10",
2315
2327
  "@inquirer/figures": "^1.0.11",
2316
- "@inquirer/type": "^3.0.5",
2328
+ "@inquirer/type": "^3.0.6",
2317
2329
  "ansi-escapes": "^4.3.2",
2318
2330
  "yoctocolors-cjs": "^2.1.2"
2319
2331
  },
@@ -2330,14 +2342,14 @@
2330
2342
  }
2331
2343
  },
2332
2344
  "node_modules/@inquirer/confirm": {
2333
- "version": "5.1.8",
2334
- "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.8.tgz",
2335
- "integrity": "sha512-dNLWCYZvXDjO3rnQfk2iuJNL4Ivwz/T2+C3+WnNfJKsNGSuOs3wAo2F6e0p946gtSAk31nZMfW+MRmYaplPKsg==",
2345
+ "version": "5.1.9",
2346
+ "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.9.tgz",
2347
+ "integrity": "sha512-NgQCnHqFTjF7Ys2fsqK2WtnA8X1kHyInyG+nMIuHowVTIgIuS10T4AznI/PvbqSpJqjCUqNBlKGh1v3bwLFL4w==",
2336
2348
  "dev": true,
2337
2349
  "license": "MIT",
2338
2350
  "dependencies": {
2339
- "@inquirer/core": "^10.1.9",
2340
- "@inquirer/type": "^3.0.5"
2351
+ "@inquirer/core": "^10.1.10",
2352
+ "@inquirer/type": "^3.0.6"
2341
2353
  },
2342
2354
  "engines": {
2343
2355
  "node": ">=18"
@@ -2352,14 +2364,14 @@
2352
2364
  }
2353
2365
  },
2354
2366
  "node_modules/@inquirer/core": {
2355
- "version": "10.1.9",
2356
- "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.9.tgz",
2357
- "integrity": "sha512-sXhVB8n20NYkUBfDYgizGHlpRVaCRjtuzNZA6xpALIUbkgfd2Hjz+DfEN6+h1BRnuxw0/P4jCIMjMsEOAMwAJw==",
2367
+ "version": "10.1.10",
2368
+ "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.1.10.tgz",
2369
+ "integrity": "sha512-roDaKeY1PYY0aCqhRmXihrHjoSW2A00pV3Ke5fTpMCkzcGF64R8e0lw3dK+eLEHwS4vB5RnW1wuQmvzoRul8Mw==",
2358
2370
  "dev": true,
2359
2371
  "license": "MIT",
2360
2372
  "dependencies": {
2361
2373
  "@inquirer/figures": "^1.0.11",
2362
- "@inquirer/type": "^3.0.5",
2374
+ "@inquirer/type": "^3.0.6",
2363
2375
  "ansi-escapes": "^4.3.2",
2364
2376
  "cli-width": "^4.1.0",
2365
2377
  "mute-stream": "^2.0.0",
@@ -2380,14 +2392,14 @@
2380
2392
  }
2381
2393
  },
2382
2394
  "node_modules/@inquirer/editor": {
2383
- "version": "4.2.9",
2384
- "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.9.tgz",
2385
- "integrity": "sha512-8HjOppAxO7O4wV1ETUlJFg6NDjp/W2NP5FB9ZPAcinAlNT4ZIWOLe2pUVwmmPRSV0NMdI5r/+lflN55AwZOKSw==",
2395
+ "version": "4.2.10",
2396
+ "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.10.tgz",
2397
+ "integrity": "sha512-5GVWJ+qeI6BzR6TIInLP9SXhWCEcvgFQYmcRG6d6RIlhFjM5TyG18paTGBgRYyEouvCmzeco47x9zX9tQEofkw==",
2386
2398
  "dev": true,
2387
2399
  "license": "MIT",
2388
2400
  "dependencies": {
2389
- "@inquirer/core": "^10.1.9",
2390
- "@inquirer/type": "^3.0.5",
2401
+ "@inquirer/core": "^10.1.10",
2402
+ "@inquirer/type": "^3.0.6",
2391
2403
  "external-editor": "^3.1.0"
2392
2404
  },
2393
2405
  "engines": {
@@ -2403,14 +2415,14 @@
2403
2415
  }
2404
2416
  },
2405
2417
  "node_modules/@inquirer/expand": {
2406
- "version": "4.0.11",
2407
- "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.11.tgz",
2408
- "integrity": "sha512-OZSUW4hFMW2TYvX/Sv+NnOZgO8CHT2TU1roUCUIF2T+wfw60XFRRp9MRUPCT06cRnKL+aemt2YmTWwt7rOrNEA==",
2418
+ "version": "4.0.12",
2419
+ "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.12.tgz",
2420
+ "integrity": "sha512-jV8QoZE1fC0vPe6TnsOfig+qwu7Iza1pkXoUJ3SroRagrt2hxiL+RbM432YAihNR7m7XnU0HWl/WQ35RIGmXHw==",
2409
2421
  "dev": true,
2410
2422
  "license": "MIT",
2411
2423
  "dependencies": {
2412
- "@inquirer/core": "^10.1.9",
2413
- "@inquirer/type": "^3.0.5",
2424
+ "@inquirer/core": "^10.1.10",
2425
+ "@inquirer/type": "^3.0.6",
2414
2426
  "yoctocolors-cjs": "^2.1.2"
2415
2427
  },
2416
2428
  "engines": {
@@ -2436,14 +2448,14 @@
2436
2448
  }
2437
2449
  },
2438
2450
  "node_modules/@inquirer/input": {
2439
- "version": "4.1.8",
2440
- "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.8.tgz",
2441
- "integrity": "sha512-WXJI16oOZ3/LiENCAxe8joniNp8MQxF6Wi5V+EBbVA0ZIOpFcL4I9e7f7cXse0HJeIPCWO8Lcgnk98juItCi7Q==",
2451
+ "version": "4.1.9",
2452
+ "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.1.9.tgz",
2453
+ "integrity": "sha512-mshNG24Ij5KqsQtOZMgj5TwEjIf+F2HOESk6bjMwGWgcH5UBe8UoljwzNFHqdMbGYbgAf6v2wU/X9CAdKJzgOA==",
2442
2454
  "dev": true,
2443
2455
  "license": "MIT",
2444
2456
  "dependencies": {
2445
- "@inquirer/core": "^10.1.9",
2446
- "@inquirer/type": "^3.0.5"
2457
+ "@inquirer/core": "^10.1.10",
2458
+ "@inquirer/type": "^3.0.6"
2447
2459
  },
2448
2460
  "engines": {
2449
2461
  "node": ">=18"
@@ -2458,14 +2470,14 @@
2458
2470
  }
2459
2471
  },
2460
2472
  "node_modules/@inquirer/number": {
2461
- "version": "3.0.11",
2462
- "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.11.tgz",
2463
- "integrity": "sha512-pQK68CsKOgwvU2eA53AG/4npRTH2pvs/pZ2bFvzpBhrznh8Mcwt19c+nMO7LHRr3Vreu1KPhNBF3vQAKrjIulw==",
2473
+ "version": "3.0.12",
2474
+ "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.12.tgz",
2475
+ "integrity": "sha512-7HRFHxbPCA4e4jMxTQglHJwP+v/kpFsCf2szzfBHy98Wlc3L08HL76UDiA87TOdX5fwj2HMOLWqRWv9Pnn+Z5Q==",
2464
2476
  "dev": true,
2465
2477
  "license": "MIT",
2466
2478
  "dependencies": {
2467
- "@inquirer/core": "^10.1.9",
2468
- "@inquirer/type": "^3.0.5"
2479
+ "@inquirer/core": "^10.1.10",
2480
+ "@inquirer/type": "^3.0.6"
2469
2481
  },
2470
2482
  "engines": {
2471
2483
  "node": ">=18"
@@ -2480,14 +2492,14 @@
2480
2492
  }
2481
2493
  },
2482
2494
  "node_modules/@inquirer/password": {
2483
- "version": "4.0.11",
2484
- "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.11.tgz",
2485
- "integrity": "sha512-dH6zLdv+HEv1nBs96Case6eppkRggMe8LoOTl30+Gq5Wf27AO/vHFgStTVz4aoevLdNXqwE23++IXGw4eiOXTg==",
2495
+ "version": "4.0.12",
2496
+ "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.12.tgz",
2497
+ "integrity": "sha512-FlOB0zvuELPEbnBYiPaOdJIaDzb2PmJ7ghi/SVwIHDDSQ2K4opGBkF+5kXOg6ucrtSUQdLhVVY5tycH0j0l+0g==",
2486
2498
  "dev": true,
2487
2499
  "license": "MIT",
2488
2500
  "dependencies": {
2489
- "@inquirer/core": "^10.1.9",
2490
- "@inquirer/type": "^3.0.5",
2501
+ "@inquirer/core": "^10.1.10",
2502
+ "@inquirer/type": "^3.0.6",
2491
2503
  "ansi-escapes": "^4.3.2"
2492
2504
  },
2493
2505
  "engines": {
@@ -2503,22 +2515,22 @@
2503
2515
  }
2504
2516
  },
2505
2517
  "node_modules/@inquirer/prompts": {
2506
- "version": "7.4.0",
2507
- "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.4.0.tgz",
2508
- "integrity": "sha512-EZiJidQOT4O5PYtqnu1JbF0clv36oW2CviR66c7ma4LsupmmQlUwmdReGKRp456OWPWMz3PdrPiYg3aCk3op2w==",
2518
+ "version": "7.4.1",
2519
+ "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.4.1.tgz",
2520
+ "integrity": "sha512-UlmM5FVOZF0gpoe1PT/jN4vk8JmpIWBlMvTL8M+hlvPmzN89K6z03+IFmyeu/oFCenwdwHDr2gky7nIGSEVvlA==",
2509
2521
  "dev": true,
2510
2522
  "license": "MIT",
2511
2523
  "dependencies": {
2512
- "@inquirer/checkbox": "^4.1.4",
2513
- "@inquirer/confirm": "^5.1.8",
2514
- "@inquirer/editor": "^4.2.9",
2515
- "@inquirer/expand": "^4.0.11",
2516
- "@inquirer/input": "^4.1.8",
2517
- "@inquirer/number": "^3.0.11",
2518
- "@inquirer/password": "^4.0.11",
2519
- "@inquirer/rawlist": "^4.0.11",
2520
- "@inquirer/search": "^3.0.11",
2521
- "@inquirer/select": "^4.1.0"
2524
+ "@inquirer/checkbox": "^4.1.5",
2525
+ "@inquirer/confirm": "^5.1.9",
2526
+ "@inquirer/editor": "^4.2.10",
2527
+ "@inquirer/expand": "^4.0.12",
2528
+ "@inquirer/input": "^4.1.9",
2529
+ "@inquirer/number": "^3.0.12",
2530
+ "@inquirer/password": "^4.0.12",
2531
+ "@inquirer/rawlist": "^4.0.12",
2532
+ "@inquirer/search": "^3.0.12",
2533
+ "@inquirer/select": "^4.1.1"
2522
2534
  },
2523
2535
  "engines": {
2524
2536
  "node": ">=18"
@@ -2533,14 +2545,14 @@
2533
2545
  }
2534
2546
  },
2535
2547
  "node_modules/@inquirer/rawlist": {
2536
- "version": "4.0.11",
2537
- "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.0.11.tgz",
2538
- "integrity": "sha512-uAYtTx0IF/PqUAvsRrF3xvnxJV516wmR6YVONOmCWJbbt87HcDHLfL9wmBQFbNJRv5kCjdYKrZcavDkH3sVJPg==",
2548
+ "version": "4.0.12",
2549
+ "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.0.12.tgz",
2550
+ "integrity": "sha512-wNPJZy8Oc7RyGISPxp9/MpTOqX8lr0r+lCCWm7hQra+MDtYRgINv1hxw7R+vKP71Bu/3LszabxOodfV/uTfsaA==",
2539
2551
  "dev": true,
2540
2552
  "license": "MIT",
2541
2553
  "dependencies": {
2542
- "@inquirer/core": "^10.1.9",
2543
- "@inquirer/type": "^3.0.5",
2554
+ "@inquirer/core": "^10.1.10",
2555
+ "@inquirer/type": "^3.0.6",
2544
2556
  "yoctocolors-cjs": "^2.1.2"
2545
2557
  },
2546
2558
  "engines": {
@@ -2556,15 +2568,15 @@
2556
2568
  }
2557
2569
  },
2558
2570
  "node_modules/@inquirer/search": {
2559
- "version": "3.0.11",
2560
- "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.0.11.tgz",
2561
- "integrity": "sha512-9CWQT0ikYcg6Ls3TOa7jljsD7PgjcsYEM0bYE+Gkz+uoW9u8eaJCRHJKkucpRE5+xKtaaDbrND+nPDoxzjYyew==",
2571
+ "version": "3.0.12",
2572
+ "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.0.12.tgz",
2573
+ "integrity": "sha512-H/kDJA3kNlnNIjB8YsaXoQI0Qccgf0Na14K1h8ExWhNmUg2E941dyFPrZeugihEa9AZNW5NdsD/NcvUME83OPQ==",
2562
2574
  "dev": true,
2563
2575
  "license": "MIT",
2564
2576
  "dependencies": {
2565
- "@inquirer/core": "^10.1.9",
2577
+ "@inquirer/core": "^10.1.10",
2566
2578
  "@inquirer/figures": "^1.0.11",
2567
- "@inquirer/type": "^3.0.5",
2579
+ "@inquirer/type": "^3.0.6",
2568
2580
  "yoctocolors-cjs": "^2.1.2"
2569
2581
  },
2570
2582
  "engines": {
@@ -2580,15 +2592,15 @@
2580
2592
  }
2581
2593
  },
2582
2594
  "node_modules/@inquirer/select": {
2583
- "version": "4.1.0",
2584
- "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.1.0.tgz",
2585
- "integrity": "sha512-z0a2fmgTSRN+YBuiK1ROfJ2Nvrpij5lVN3gPDkQGhavdvIVGHGW29LwYZfM/j42Ai2hUghTI/uoBuTbrJk42bA==",
2595
+ "version": "4.1.1",
2596
+ "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.1.1.tgz",
2597
+ "integrity": "sha512-IUXzzTKVdiVNMA+2yUvPxWsSgOG4kfX93jOM4Zb5FgujeInotv5SPIJVeXQ+fO4xu7tW8VowFhdG5JRmmCyQ1Q==",
2586
2598
  "dev": true,
2587
2599
  "license": "MIT",
2588
2600
  "dependencies": {
2589
- "@inquirer/core": "^10.1.9",
2601
+ "@inquirer/core": "^10.1.10",
2590
2602
  "@inquirer/figures": "^1.0.11",
2591
- "@inquirer/type": "^3.0.5",
2603
+ "@inquirer/type": "^3.0.6",
2592
2604
  "ansi-escapes": "^4.3.2",
2593
2605
  "yoctocolors-cjs": "^2.1.2"
2594
2606
  },
@@ -2605,9 +2617,9 @@
2605
2617
  }
2606
2618
  },
2607
2619
  "node_modules/@inquirer/type": {
2608
- "version": "3.0.5",
2609
- "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.5.tgz",
2610
- "integrity": "sha512-ZJpeIYYueOz/i/ONzrfof8g89kNdO2hjGuvULROo3O8rlB2CRtSseE5KeirnyE4t/thAn/EwvS/vuQeJCn+NZg==",
2620
+ "version": "3.0.6",
2621
+ "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.6.tgz",
2622
+ "integrity": "sha512-/mKVCtVpyBu3IDarv0G+59KC4stsD5mDsGpYh+GKs1NZT88Jh52+cuoA1AtLk2Q0r/quNl+1cSUyLRHBFeD0XA==",
2611
2623
  "dev": true,
2612
2624
  "license": "MIT",
2613
2625
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/html-webpack-plugin",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "CAWebPublishing Sample Page and Configurations",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -105,19 +105,20 @@
105
105
  },
106
106
  "homepage": "https://github.com/CAWebPublishing/webpack/plugins/html#readme",
107
107
  "devDependencies": {
108
- "@inquirer/prompts": "^7.4.0",
108
+ "@caweb/icon-library": "^1.0.1",
109
+ "@inquirer/prompts": "^7.4.1",
109
110
  "animate.css": "^4.1.1",
110
- "bootstrap": "^5.3.3",
111
+ "bootstrap": "^5.3.4",
111
112
  "bootstrap-forced-colors-css": "^1.0.7",
112
113
  "chalk": "^5.4.1",
113
114
  "cross-spawn": "^7.0.6",
114
- "fast-xml-parser": "^5.0.9"
115
+ "fast-xml-parser": "^5.2.0"
115
116
  },
116
117
  "dependencies": {
117
118
  "@caweb/a11y-webpack-plugin": "^1.0.9",
118
119
  "@caweb/css-audit-webpack-plugin": "^1.0.12",
119
120
  "@caweb/jshint-webpack-plugin": "^2.0.1",
120
- "@wordpress/scripts": "^30.13.0",
121
+ "@wordpress/scripts": "^30.14.1",
121
122
  "css-minimizer-webpack-plugin": "^7.0.2",
122
123
  "handlebars-loader": "^1.7.3",
123
124
  "html-webpack-link-type-plugin": "^1.1.1",
@@ -39,6 +39,7 @@ const currentPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '
39
39
  export default {
40
40
  entry: {
41
41
  ${scheme}: [
42
+ path.join(currentPath, 'node_modules/@caweb/icon-library/build/font-only.css'),
42
43
  path.join(currentPath, ${correctFiles.join('),\n' + `\t`.repeat(3) + 'path.join(currentPath, ')})
43
44
  ]
44
45
  }