@serwist/cli 9.0.0-preview.21 → 9.0.0-preview.25
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/cli.js +3 -0
- package/dist/bin.js +1 -1
- package/package.json +12 -11
package/cli.js
ADDED
package/dist/bin.js
CHANGED
|
@@ -209,7 +209,7 @@ async function runWizard() {
|
|
|
209
209
|
serwist inject-manifest ${configLocation}
|
|
210
210
|
|
|
211
211
|
as part of a build process.`);
|
|
212
|
-
logger.log(`You can further customize your service worker by making changes to ${configLocation}. See https://serwist.pages.dev/docs/build/
|
|
212
|
+
logger.log(`You can further customize your service worker by making changes to ${configLocation}. See https://serwist.pages.dev/docs/build/configuring for details.`);
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
const runBuildCommand = async ({ config, watch })=>{
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serwist/cli",
|
|
3
|
-
"version": "9.0.0-preview.
|
|
3
|
+
"version": "9.0.0-preview.25",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The command line interface of Serwist.",
|
|
6
6
|
"files": [
|
|
7
|
-
"dist"
|
|
7
|
+
"dist",
|
|
8
|
+
"cli.js"
|
|
8
9
|
],
|
|
9
10
|
"keywords": [
|
|
10
11
|
"serwist",
|
|
@@ -20,25 +21,25 @@
|
|
|
20
21
|
},
|
|
21
22
|
"author": "Google's Web DevRel Team, Serwist's Team",
|
|
22
23
|
"license": "MIT",
|
|
23
|
-
"repository": "https://
|
|
24
|
-
"bugs": "https://
|
|
24
|
+
"repository": "https://github.com/serwist/serwist",
|
|
25
|
+
"bugs": "https://github.com/serwist/serwist/issues",
|
|
25
26
|
"homepage": "https://serwist.pages.dev",
|
|
26
27
|
"bin": {
|
|
27
|
-
"serwist": "
|
|
28
|
+
"serwist": "cli.js"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"chalk": "5.3.0",
|
|
31
32
|
"chokidar": "3.6.0",
|
|
32
33
|
"common-tags": "1.8.2",
|
|
33
34
|
"fs-extra": "11.2.0",
|
|
34
|
-
"glob": "10.3.
|
|
35
|
-
"inquirer": "9.2.
|
|
35
|
+
"glob": "10.3.12",
|
|
36
|
+
"inquirer": "9.2.18",
|
|
36
37
|
"meow": "13.2.0",
|
|
37
38
|
"pretty-bytes": "6.1.1",
|
|
38
39
|
"stringify-object": "5.0.0",
|
|
39
40
|
"upath": "2.0.1",
|
|
40
41
|
"update-notifier": "7.0.0",
|
|
41
|
-
"@serwist/build": "9.0.0-preview.
|
|
42
|
+
"@serwist/build": "9.0.0-preview.25"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@types/common-tags": "1.8.4",
|
|
@@ -46,9 +47,9 @@
|
|
|
46
47
|
"@types/inquirer": "9.0.7",
|
|
47
48
|
"@types/stringify-object": "4.0.5",
|
|
48
49
|
"@types/update-notifier": "6.0.8",
|
|
49
|
-
"rollup": "4.
|
|
50
|
-
"typescript": "5.5.0-dev.
|
|
51
|
-
"@serwist/
|
|
50
|
+
"rollup": "4.14.3",
|
|
51
|
+
"typescript": "5.5.0-dev.20240415",
|
|
52
|
+
"@serwist/configs": "9.0.0-preview.25"
|
|
52
53
|
},
|
|
53
54
|
"scripts": {
|
|
54
55
|
"build": "rimraf dist && cross-env NODE_ENV=production rollup --config rollup.config.js",
|