@serwist/webpack-plugin 9.0.0-preview.14 → 9.0.0-preview.16

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/dist/index.js CHANGED
@@ -2,7 +2,7 @@ import { transformManifest, getSourceMapURL, stringify, escapeRegExp, replaceAnd
2
2
  import prettyBytes from 'pretty-bytes';
3
3
  import upath from 'upath';
4
4
  import { validationErrorMap, SerwistConfigError } from '@serwist/build/schema';
5
- import crypto from 'crypto';
5
+ import crypto from 'node:crypto';
6
6
  import { r as relativeToOutputPath } from './chunks/relative-to-output-path.js';
7
7
 
8
8
  const validateInjectManifestOptions = async (input)=>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serwist/webpack-plugin",
3
- "version": "9.0.0-preview.14",
3
+ "version": "9.0.0-preview.16",
4
4
  "type": "module",
5
5
  "description": "A plugin for your webpack build process, helping you generate a manifest of local files that should be precached.",
6
6
  "files": [
@@ -56,16 +56,16 @@
56
56
  "pretty-bytes": "6.1.1",
57
57
  "upath": "2.0.1",
58
58
  "zod": "3.22.4",
59
- "@serwist/build": "9.0.0-preview.14"
59
+ "@serwist/build": "9.0.0-preview.16"
60
60
  },
61
61
  "devDependencies": {
62
- "@types/node": "20.11.26",
62
+ "@types/node": "20.11.30",
63
63
  "@types/webpack": "5.28.5",
64
64
  "rollup": "4.13.0",
65
- "typescript": "5.5.0-dev.20240312",
66
- "webpack": "5.90.3",
67
- "@serwist/constants": "9.0.0-preview.14",
68
- "@serwist/utils": "9.0.0-preview.14"
65
+ "typescript": "5.5.0-dev.20240323",
66
+ "webpack": "5.91.0",
67
+ "@serwist/constants": "9.0.0-preview.16",
68
+ "@serwist/utils": "9.0.0-preview.16"
69
69
  },
70
70
  "peerDependencies": {
71
71
  "typescript": ">=5.0.0",
@@ -6,7 +6,7 @@
6
6
  https://opensource.org/licenses/MIT.
7
7
  */
8
8
 
9
- import crypto from "crypto";
9
+ import crypto from "node:crypto";
10
10
  import type { Asset } from "webpack";
11
11
 
12
12
  /**