@squidcloud/cli 1.0.413 → 1.0.414
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.
|
@@ -14,7 +14,12 @@ module.exports = function (env, argv) {
|
|
|
14
14
|
externalsPresets: { node: true },
|
|
15
15
|
externals: {
|
|
16
16
|
// Do not bundle Puppeteer. Squid provides a pre-installed version of the library.
|
|
17
|
-
puppeteer: 'commonjs puppeteer',
|
|
17
|
+
'puppeteer': 'commonjs puppeteer',
|
|
18
|
+
// Optional peer dependencies for 'ws' library.
|
|
19
|
+
// Do not include them to avoid build time warnings
|
|
20
|
+
// on platforms where these modules are not available.
|
|
21
|
+
'bufferutil': 'commonjs bufferutil',
|
|
22
|
+
'utf-8-validate': 'commonjs utf-8-validate',
|
|
18
23
|
},
|
|
19
24
|
output: {
|
|
20
25
|
path: path.resolve(process.cwd(), 'dist'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.414",
|
|
4
4
|
"description": "The Squid CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,15 +28,12 @@
|
|
|
28
28
|
"node": ">=18.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@squidcloud/local-backend": "^1.0.
|
|
31
|
+
"@squidcloud/local-backend": "^1.0.414",
|
|
32
32
|
"adm-zip": "^0.5.16",
|
|
33
33
|
"copy-webpack-plugin": "^12.0.2",
|
|
34
34
|
"decompress": "^4.2.1",
|
|
35
|
-
"nodemon": "^3.1.3",
|
|
36
35
|
"terser-webpack-plugin": "^5.3.10",
|
|
37
36
|
"ts-loader": "^9.5.1",
|
|
38
|
-
"ts-node": "^10.9.2",
|
|
39
|
-
"tsconfig-paths": "^4.2.0",
|
|
40
37
|
"tsconfig-paths-webpack-plugin": "^4.1.0",
|
|
41
38
|
"webpack": "^5.101.3",
|
|
42
39
|
"zip-webpack-plugin": "^4.0.1"
|
|
@@ -45,6 +42,9 @@
|
|
|
45
42
|
"@types/adm-zip": "^0.5.7",
|
|
46
43
|
"@types/decompress": "^4.2.7",
|
|
47
44
|
"@types/node": "^20.19.9",
|
|
48
|
-
"
|
|
45
|
+
"nodemon": "^3.1.9",
|
|
46
|
+
"terminal-link": "^3.0.0",
|
|
47
|
+
"ts-node": "^10.9.2",
|
|
48
|
+
"tsconfig-paths": "^4.2.0"
|
|
49
49
|
}
|
|
50
50
|
}
|