juo 0.0.1-alpha.4 → 0.0.1-alpha.5
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
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Command } from "@oclif/core";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces5 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/commands/create.d.ts
|
|
5
5
|
declare class Create extends Command {
|
|
6
6
|
static description: string;
|
|
7
7
|
static flags: {
|
|
8
|
-
quickstart:
|
|
9
|
-
verbose:
|
|
8
|
+
quickstart: _oclif_core_interfaces5.BooleanFlag<boolean>;
|
|
9
|
+
verbose: _oclif_core_interfaces5.BooleanFlag<boolean>;
|
|
10
10
|
};
|
|
11
11
|
run(): Promise<void>;
|
|
12
12
|
private getProjectConfig;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { Command } from "@oclif/core";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces0 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/commands/generate.d.ts
|
|
5
5
|
declare class Generate extends Command {
|
|
6
6
|
static id: string;
|
|
7
7
|
static description: string;
|
|
8
8
|
static flags: {
|
|
9
|
-
name:
|
|
10
|
-
type:
|
|
11
|
-
tailwind:
|
|
12
|
-
verbose:
|
|
9
|
+
name: _oclif_core_interfaces0.OptionFlag<string | undefined, _oclif_core_interfaces0.CustomOptions>;
|
|
10
|
+
type: _oclif_core_interfaces0.OptionFlag<string, _oclif_core_interfaces0.CustomOptions>;
|
|
11
|
+
tailwind: _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
12
|
+
verbose: _oclif_core_interfaces0.BooleanFlag<boolean>;
|
|
13
13
|
};
|
|
14
14
|
static examples: string[];
|
|
15
15
|
private resolvePackageJsonPath;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Command, Interfaces } from "@oclif/core";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces7 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/base-command.d.ts
|
|
5
5
|
interface OrionConfig {
|
|
@@ -30,7 +30,7 @@ declare class Publish extends BaseCommand<typeof Publish> {
|
|
|
30
30
|
static description: string;
|
|
31
31
|
static examples: string[];
|
|
32
32
|
static flags: {
|
|
33
|
-
theme:
|
|
33
|
+
theme: _oclif_core_interfaces7.OptionFlag<string, _oclif_core_interfaces7.CustomOptions>;
|
|
34
34
|
};
|
|
35
35
|
getAllFiles(dirPath: string, basePath: string): string[];
|
|
36
36
|
run(): Promise<void>;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "juo",
|
|
3
3
|
"description": "A CLI tool for the Juo platform",
|
|
4
|
-
"version": "0.0.1-alpha.
|
|
4
|
+
"version": "0.0.1-alpha.5",
|
|
5
5
|
"author": "Juo (https://juo.io)",
|
|
6
6
|
"bin": {
|
|
7
7
|
"juo": "./bin/run.js"
|
|
@@ -64,6 +64,10 @@
|
|
|
64
64
|
"plugins": [
|
|
65
65
|
"@oclif/plugin-help"
|
|
66
66
|
],
|
|
67
|
+
"hooks": {
|
|
68
|
+
"prerun": "./dist/hooks/prerun.js",
|
|
69
|
+
"postrun": "./dist/hooks/postrun.js"
|
|
70
|
+
},
|
|
67
71
|
"topicSeparator": " ",
|
|
68
72
|
"topics": {
|
|
69
73
|
"publish": {
|