juo 0.3.0-alpha.4 → 0.3.0-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 +1 -1
- package/dist/commands/blocks/dev.d.ts +2 -2
- package/dist/commands/create.js +1 -1
- package/dist/commands/publish/index.d.ts +2 -2
- package/dist/lib/index.js +1 -1
- package/dist/{packageGenerator-CE68rONC.js → packageGenerator-C2JXZ8Ob.js} +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { t as BaseCommand } from "../../base-command-BQVnm_gK.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces2 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/commands/blocks/dev.d.ts
|
|
5
5
|
declare class Dev extends BaseCommand<typeof Dev> {
|
|
6
6
|
static description: string;
|
|
7
7
|
static examples: string[];
|
|
8
8
|
static flags: {
|
|
9
|
-
port:
|
|
9
|
+
port: _oclif_core_interfaces2.OptionFlag<number, _oclif_core_interfaces2.CustomOptions>;
|
|
10
10
|
};
|
|
11
11
|
run(): Promise<void>;
|
|
12
12
|
private resolvePackageJsonPath;
|
package/dist/commands/create.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { r as BaseTemplateGenerator } from "../juoTemplateGenerator-RkinYN2l.js";
|
|
2
|
-
import { t as PackageGenerator } from "../packageGenerator-
|
|
2
|
+
import { t as PackageGenerator } from "../packageGenerator-C2JXZ8Ob.js";
|
|
3
3
|
import { t as Generate } from "../generate-BiHo2p9_.js";
|
|
4
4
|
import { Command, Flags } from "@oclif/core";
|
|
5
5
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as BaseCommand } from "../../base-command-BQVnm_gK.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _oclif_core_interfaces4 from "@oclif/core/interfaces";
|
|
3
3
|
|
|
4
4
|
//#region src/commands/publish/index.d.ts
|
|
5
5
|
declare class Publish extends BaseCommand<typeof Publish> {
|
|
@@ -7,7 +7,7 @@ declare class Publish extends BaseCommand<typeof Publish> {
|
|
|
7
7
|
static description: string;
|
|
8
8
|
static examples: string[];
|
|
9
9
|
static flags: {
|
|
10
|
-
theme:
|
|
10
|
+
theme: _oclif_core_interfaces4.OptionFlag<string, _oclif_core_interfaces4.CustomOptions>;
|
|
11
11
|
};
|
|
12
12
|
getAllFiles(dirPath: string, basePath: string): string[];
|
|
13
13
|
run(): Promise<void>;
|
package/dist/lib/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { n as StoryGenerator, r as BaseTemplateGenerator, t as JuoTemplateGenerator } from "../juoTemplateGenerator-RkinYN2l.js";
|
|
2
|
-
import { t as PackageGenerator } from "../packageGenerator-
|
|
2
|
+
import { t as PackageGenerator } from "../packageGenerator-C2JXZ8Ob.js";
|
|
3
3
|
|
|
4
4
|
export { BaseTemplateGenerator, JuoTemplateGenerator, PackageGenerator, StoryGenerator };
|
|
@@ -80,8 +80,8 @@ var PackageGenerator = class {
|
|
|
80
80
|
});
|
|
81
81
|
const frameworkConfig = FRAMEWORK_CONFIGS[options.framework];
|
|
82
82
|
baseConfig.dependencies = {
|
|
83
|
-
"@juo/blocks": "
|
|
84
|
-
"@juo/customer-ui": "
|
|
83
|
+
"@juo/blocks": "1.12.0-alpha.3",
|
|
84
|
+
"@juo/customer-ui": "0.5.0-alpha.6",
|
|
85
85
|
...baseConfig.dependencies,
|
|
86
86
|
...frameworkConfig.dependencies
|
|
87
87
|
};
|
package/oclif.manifest.json
CHANGED