create-squire-workspace 0.1.136 → 0.1.138

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.
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ export declare class SqArchitectModule {
2
+ }
@@ -18,6 +18,7 @@
18
18
  "traceResolution": false,
19
19
  "experimentalDecorators": true,
20
20
  "emitDecoratorMetadata": true,
21
+ "types": [ "@types/node" ],
21
22
  "paths": { }
22
23
  }
23
24
  }
@@ -0,0 +1,5 @@
1
+ import { GenerateEntityConfiguration, LintingTool } from "@code-squire/workspace";
2
+ export interface GenerateWorkspaceConfiguration extends GenerateEntityConfiguration {
3
+ linting?: LintingTool;
4
+ scope?: string;
5
+ }
@@ -0,0 +1,7 @@
1
+ import { GenerationTaskInterface, TaskRunResult } from "@code-squire/workspace";
2
+ import { GenerateWorkspaceConfiguration } from "./generate-workspace.configuration";
3
+ export interface GenerateWorkspaceTask extends GenerationTaskInterface {
4
+ }
5
+ export declare class GenerateWorkspaceTask {
6
+ execute(configuration: GenerateWorkspaceConfiguration): Promise<TaskRunResult>;
7
+ }
@@ -0,0 +1,2 @@
1
+ export * from './generate-workspace.task';
2
+ export * from './generate-workspace.configuration';
@@ -0,0 +1,2 @@
1
+ export * from './architect';
2
+ export * from './interactions';
@@ -0,0 +1 @@
1
+ export * from './interactions';
@@ -0,0 +1,2 @@
1
+ export declare const askLinting: () => Promise<any>;
2
+ export declare const askScope: () => Promise<any>;
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
@@ -6,7 +6,7 @@ import process from "node:process";
6
6
  import filesystem from "fs";
7
7
  const localFlag = 'local=true';
8
8
  class CreateSquireWorkspace {
9
- version = '0.1.136';
9
+ version = '0.1.138';
10
10
  async create() {
11
11
  const { name, local } = this.parseArgs();
12
12
  const extension = nodePath.extname(import.meta.url);
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './create-squire-workspace';
2
+ export * from './architect';
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "create-squire-workspace",
3
- "version": "0.1.136",
3
+ "version": "0.1.138",
4
4
  "type": "module",
5
5
  "main": "./create-workspace.js",
6
- "types": "./create-squire-workspace.d.ts",
6
+ "types": "./create-workspace.d.ts",
7
7
  "dependencies": {
8
- "@code-squire/workspace": "~0.1.136",
9
- "@code-squire/utils": "~0.1.136",
10
- "@code-squire/node-cli": "~0.1.136",
11
- "@code-squire/feature-modules": "~0.1.136",
12
- "@code-squire/vfs": "~0.1.136",
13
- "@code-squire/ioc": "~0.1.136",
14
- "@code-squire/terminal": "~0.1.136",
15
- "@code-squire/node-utils": "~0.1.136"
8
+ "@code-squire/workspace": "~0.1.138",
9
+ "@code-squire/utils": "~0.1.138",
10
+ "@code-squire/node-cli": "~0.1.138",
11
+ "@code-squire/feature-modules": "~0.1.138",
12
+ "@code-squire/vfs": "~0.1.138",
13
+ "@code-squire/ioc": "~0.1.138",
14
+ "@code-squire/terminal": "~0.1.138",
15
+ "@code-squire/node-utils": "~0.1.138"
16
16
  },
17
17
  "bin": "./create-squire-workspace.js"
18
18
  }