@galacean/cli 0.1.0 → 0.1.1
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 +2 -2
- package/dist/generators/plugin.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ $ npm install -g @galacean/cli
|
|
|
14
14
|
$ galacean COMMAND
|
|
15
15
|
running command...
|
|
16
16
|
$ galacean (--version)
|
|
17
|
-
@galacean/cli/0.1.
|
|
17
|
+
@galacean/cli/0.1.1 darwin-arm64 node-v18.19.0
|
|
18
18
|
$ galacean --help [COMMAND]
|
|
19
19
|
USAGE
|
|
20
20
|
$ galacean COMMAND
|
|
@@ -42,7 +42,7 @@ DESCRIPTION
|
|
|
42
42
|
This will clone the specific folder in 'galacean/galacean-editor-plugin-examples' and update package properties
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
_See code: [dist/commands/generate.ts](https://github.com/galacean/cli/blob/v0.1.
|
|
45
|
+
_See code: [dist/commands/generate.ts](https://github.com/galacean/cli/blob/v0.1.1/dist/commands/generate.ts)_
|
|
46
46
|
|
|
47
47
|
## `galacean help [COMMAND]`
|
|
48
48
|
|
|
@@ -11,7 +11,7 @@ const { version } = require('../../package.json');
|
|
|
11
11
|
class PluginGenerator extends Generator {
|
|
12
12
|
constructor(args, opts) {
|
|
13
13
|
super(args, opts);
|
|
14
|
-
this.exampleRepoUrl = '
|
|
14
|
+
this.exampleRepoUrl = 'git@github.com:galacean/galacean-editor-plugin-examples.git';
|
|
15
15
|
this.githubUser = '';
|
|
16
16
|
this.name = opts.name;
|
|
17
17
|
this.options.force = opts.force;
|
package/oclif.manifest.json
CHANGED