@jetshop/cli 6.2.16-0 → 6.2.17-0
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/README.md +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
- package/src/commands/init.js +1 -3
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ $ npm install -g @jetshop/cli
|
|
|
23
23
|
$ jetshop COMMAND
|
|
24
24
|
running command...
|
|
25
25
|
$ jetshop (-v|--version|version)
|
|
26
|
-
@jetshop/cli/6.2.
|
|
26
|
+
@jetshop/cli/6.2.17-0 darwin-arm64 node-v18.16.0
|
|
27
27
|
$ jetshop --help [COMMAND]
|
|
28
28
|
USAGE
|
|
29
29
|
$ jetshop COMMAND
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"6.2.
|
|
1
|
+
{"version":"6.2.17-0","commands":{"init":{"id":"init","description":"Setup of base project for jetshop e-commerce","pluginName":"@jetshop/cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"repoName"},{"name":"shopid"}]}}}
|
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -124,9 +124,7 @@ class InitCmd extends Command {
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
cli.action.start('fetching base');
|
|
127
|
-
const packName = await downloadNpmPackage(
|
|
128
|
-
'@jetshop/template-trend@6.2.15-0'
|
|
129
|
-
);
|
|
127
|
+
const packName = await downloadNpmPackage('@jetshop/template-trend');
|
|
130
128
|
cli.action.stop();
|
|
131
129
|
|
|
132
130
|
cli.action.start('unpacking');
|