@sprucelabs/spruce-cli 22.2.0 → 23.0.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/.eslintcache +1 -1
- package/build/.spruce/errors/errors.types.d.ts +4 -4
- package/build/.spruce/errors/options.types.d.ts +3 -3
- package/build/.spruce/errors/spruceCli/appControllerAlreadyExists.schema.d.ts +3 -0
- package/build/.spruce/errors/spruceCli/appControllerAlreadyExists.schema.js +12 -0
- package/build/.spruce/errors/spruceCli/appControllerAlreadyExists.schema.js.map +1 -0
- package/build/.spruce/schemas/schemas.types.d.ts +2 -4
- package/build/__tests__/behavioral/features/InstallingFeaturesDirectly.test.d.ts +17 -0
- package/build/__tests__/behavioral/features/InstallingFeaturesDirectly.test.js +142 -0
- package/build/__tests__/behavioral/features/InstallingFeaturesDirectly.test.js.map +1 -0
- package/build/__tests__/behavioral/onboard/StartingOnboarding.test.js +17 -7
- package/build/__tests__/behavioral/onboard/StartingOnboarding.test.js.map +1 -1
- package/build/__tests__/behavioral/schemas/HandlesRelatedSchemas.test.js +1 -1
- package/build/__tests__/behavioral/schemas/HandlesRelatedSchemas.test.js.map +1 -1
- package/build/__tests__/behavioral/schemas/UsingSchemasInCli.test.js +17 -7
- package/build/__tests__/behavioral/schemas/UsingSchemasInCli.test.js.map +1 -1
- package/build/__tests__/behavioral/tests/SelectingAnAbstractTestClass.test.js +1 -1
- package/build/__tests__/behavioral/tests/SelectingAnAbstractTestClass.test.js.map +1 -1
- package/build/__tests__/behavioral/views/{CreatingAnAppViewController.test.d.ts → CreatingAnAppController.test.d.ts} +9 -5
- package/build/__tests__/behavioral/views/{CreatingAnAppViewController.test.js → CreatingAnAppController.test.js} +63 -34
- package/build/__tests__/behavioral/views/CreatingAnAppController.test.js.map +1 -0
- package/build/__tests__/behavioral/views/CreatingViewControllers.test.d.ts +5 -0
- package/build/__tests__/behavioral/views/CreatingViewControllers.test.js +37 -0
- package/build/__tests__/behavioral/views/CreatingViewControllers.test.js.map +1 -0
- package/build/__tests__/behavioral/views/KeepingViewsInSync.test.d.ts +1 -0
- package/build/__tests__/behavioral/views/KeepingViewsInSync.test.js +14 -0
- package/build/__tests__/behavioral/views/KeepingViewsInSync.test.js.map +1 -1
- package/build/__tests__/behavioral/watchers/WatchingForChanges.test.js +5 -10
- package/build/__tests__/behavioral/watchers/WatchingForChanges.test.js.map +1 -1
- package/build/__tests__/implementation/ArgParser.test.js +17 -7
- package/build/__tests__/implementation/ArgParser.test.js.map +1 -1
- package/build/__tests__/implementation/BulkImporting.test.js +17 -7
- package/build/__tests__/implementation/BulkImporting.test.js.map +1 -1
- package/build/__tests__/implementation/CommanderCommandResultMapper.test.js +17 -7
- package/build/__tests__/implementation/CommanderCommandResultMapper.test.js.map +1 -1
- package/build/__tests__/implementation/EventContractCleanerUtil.test.js +17 -7
- package/build/__tests__/implementation/EventContractCleanerUtil.test.js.map +1 -1
- package/build/__tests__/implementation/FeaturesUtil.test.js +17 -7
- package/build/__tests__/implementation/FeaturesUtil.test.js.map +1 -1
- package/build/__tests__/implementation/JestJsonParser.test.js +17 -7
- package/build/__tests__/implementation/JestJsonParser.test.js.map +1 -1
- package/build/__tests__/implementation/SchemaValueTypeWriter.test.js +1 -1
- package/build/__tests__/implementation/SchemaValueTypeWriter.test.js.map +1 -1
- package/build/__tests__/implementation/TerminalInterface.test.js +17 -7
- package/build/__tests__/implementation/TerminalInterface.test.js.map +1 -1
- package/build/errors/SpruceError.js +2 -2
- package/build/errors/SpruceError.js.map +1 -1
- package/build/errors/{appViewControllerAlreadyExists.builder.js → appControllerAlreadyExists.builder.js} +2 -2
- package/build/errors/appControllerAlreadyExists.builder.js.map +1 -0
- package/build/features/cache/CacheFeature.d.ts +8 -5
- package/build/features/cache/CacheFeature.js.map +1 -1
- package/build/features/conversation/ConversationFeature.d.ts +8 -5
- package/build/features/conversation/ConversationFeature.js.map +1 -1
- package/build/features/dependencies/DependencyFeature.d.ts +8 -5
- package/build/features/dependencies/DependencyFeature.js.map +1 -1
- package/build/features/deploy/DeployFeature.d.ts +8 -5
- package/build/features/deploy/DeployFeature.js.map +1 -1
- package/build/features/error/ErrorFeature.d.ts +8 -8
- package/build/features/error/ErrorFeature.js.map +1 -1
- package/build/features/eventContract/EventContractFeature.d.ts +8 -5
- package/build/features/eventContract/EventContractFeature.js.map +1 -1
- package/build/features/onboard/OnboardFeature.d.ts +8 -5
- package/build/features/onboard/OnboardFeature.js.map +1 -1
- package/build/features/organization/OrganizationFeature.d.ts +3 -0
- package/build/features/permission/PermissionFeature.d.ts +3 -0
- package/build/features/person/PersonFeature.d.ts +3 -0
- package/build/features/polish/PolishFeature.d.ts +3 -0
- package/build/features/sandbox/SandboxFeature.d.ts +8 -5
- package/build/features/sandbox/SandboxFeature.js.map +1 -1
- package/build/features/skill/actions/BootAction.d.ts +9 -9
- package/build/features/skill/actions/BootAction.js.map +1 -1
- package/build/features/skill/actions/InstallFeatureAction.d.ts +37 -0
- package/build/features/skill/actions/InstallFeatureAction.js +80 -0
- package/build/features/skill/actions/InstallFeatureAction.js.map +1 -0
- package/build/features/store/StoreFeature.d.ts +8 -5
- package/build/features/store/StoreFeature.js.map +1 -1
- package/build/features/test/TestFeature.d.ts +8 -5
- package/build/features/test/TestFeature.js.map +1 -1
- package/build/features/validateAndNormalize.utility.js.map +1 -1
- package/build/features/view/ViewFeature.d.ts +8 -8
- package/build/features/view/ViewFeature.js.map +1 -1
- package/build/features/view/actions/CreateAppAction.d.ts +1 -0
- package/build/features/view/actions/CreateAppAction.js +4 -3
- package/build/features/view/actions/CreateAppAction.js.map +1 -1
- package/build/features/view/actions/SyncAction.js +6 -6
- package/build/features/view/actions/SyncAction.js.map +1 -1
- package/build/features/view/writers/ViewWriter.d.ts +2 -1
- package/build/features/view/writers/ViewWriter.js +15 -8
- package/build/features/view/writers/ViewWriter.js.map +1 -1
- package/build/features/vscode/VsCodeFeature.d.ts +8 -5
- package/build/features/vscode/VsCodeFeature.js.map +1 -1
- package/build/features/watch/WatchFeature.js +1 -2
- package/build/features/watch/WatchFeature.js.map +1 -1
- package/build/tests/AbstractCliTest.js +17 -7
- package/build/tests/AbstractCliTest.js.map +1 -1
- package/build/tests/cleanTestData.js +17 -7
- package/build/tests/cleanTestData.js.map +1 -1
- package/build/utilities/introspection.utility.js +17 -7
- package/build/utilities/introspection.utility.js.map +1 -1
- package/junit.xml +8 -1773
- package/package.json +30 -30
- package/src/.spruce/errors/errors.types.ts +4 -4
- package/src/.spruce/errors/options.types.ts +3 -3
- package/src/.spruce/errors/spruceCli/appControllerAlreadyExists.schema.ts +16 -0
- package/src/.spruce/schemas/schemas.types.ts +1 -1
- package/src/__tests__/behavioral/features/InstallingFeaturesDirectly.test.ts +149 -0
- package/src/__tests__/behavioral/schemas/HandlesRelatedSchemas.test.ts +1 -1
- package/src/__tests__/behavioral/tests/SelectingAnAbstractTestClass.test.ts +1 -1
- package/src/__tests__/behavioral/views/{CreatingAnAppViewController.test.ts → CreatingAnAppController.test.ts} +57 -25
- package/src/__tests__/behavioral/views/CreatingViewControllers.test.ts +28 -0
- package/src/__tests__/behavioral/views/KeepingViewsInSync.test.ts +16 -0
- package/src/__tests__/behavioral/watchers/WatchingForChanges.test.ts +6 -11
- package/src/__tests__/implementation/SchemaValueTypeWriter.test.ts +1 -1
- package/src/errors/SpruceError.ts +2 -2
- package/src/errors/{appViewControllerAlreadyExists.builder.ts → appControllerAlreadyExists.builder.ts} +1 -1
- package/src/features/cache/CacheFeature.ts +10 -6
- package/src/features/conversation/ConversationFeature.ts +10 -6
- package/src/features/dependencies/DependencyFeature.ts +10 -6
- package/src/features/deploy/DeployFeature.ts +10 -6
- package/src/features/error/ErrorFeature.ts +10 -10
- package/src/features/eventContract/EventContractFeature.ts +10 -6
- package/src/features/onboard/OnboardFeature.ts +10 -6
- package/src/features/organization/OrganizationFeature.ts +4 -0
- package/src/features/permission/PermissionFeature.ts +4 -0
- package/src/features/person/PersonFeature.ts +4 -0
- package/src/features/polish/PolishFeature.ts +4 -0
- package/src/features/sandbox/SandboxFeature.ts +10 -6
- package/src/features/skill/actions/BootAction.ts +11 -11
- package/src/features/skill/actions/InstallFeatureAction.ts +96 -0
- package/src/features/store/StoreFeature.ts +10 -6
- package/src/features/test/TestFeature.ts +10 -6
- package/src/features/validateAndNormalize.utility.ts +2 -1
- package/src/features/view/ViewFeature.ts +10 -10
- package/src/features/view/actions/CreateAppAction.ts +8 -4
- package/src/features/view/actions/SyncAction.ts +12 -8
- package/src/features/view/writers/ViewWriter.ts +34 -9
- package/src/features/vscode/VsCodeFeature.ts +9 -6
- package/src/features/watch/WatchFeature.ts +2 -3
- package/build/.spruce/errors/spruceCli/appViewControllerAlreadyExists.schema.d.ts +0 -3
- package/build/.spruce/errors/spruceCli/appViewControllerAlreadyExists.schema.js +0 -12
- package/build/.spruce/errors/spruceCli/appViewControllerAlreadyExists.schema.js.map +0 -1
- package/build/__tests__/behavioral/views/CreatingAnAppViewController.test.js.map +0 -1
- package/build/errors/appViewControllerAlreadyExists.builder.js.map +0 -1
- package/src/.spruce/errors/spruceCli/appViewControllerAlreadyExists.schema.ts +0 -16
- /package/build/errors/{appViewControllerAlreadyExists.builder.d.ts → appControllerAlreadyExists.builder.d.ts} +0 -0
|
@@ -3,12 +3,6 @@ import { FileDescription } from '../../types/cli.types'
|
|
|
3
3
|
import AbstractFeature from '../AbstractFeature'
|
|
4
4
|
import { FeatureCode } from '../features.types'
|
|
5
5
|
|
|
6
|
-
declare module '../../features/features.types' {
|
|
7
|
-
interface FeatureMap {
|
|
8
|
-
vscode: VsCodeFeature
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
6
|
export default class VsCodeFeature extends AbstractFeature {
|
|
13
7
|
public nameReadable = 'VSCode'
|
|
14
8
|
public description = 'Create settings and install VSCode extensions'
|
|
@@ -52,3 +46,12 @@ export default class VsCodeFeature extends AbstractFeature {
|
|
|
52
46
|
return true
|
|
53
47
|
}
|
|
54
48
|
}
|
|
49
|
+
|
|
50
|
+
declare module '../../features/features.types' {
|
|
51
|
+
interface FeatureMap {
|
|
52
|
+
vscode: VsCodeFeature
|
|
53
|
+
}
|
|
54
|
+
interface FeatureOptionsMap {
|
|
55
|
+
vscode: undefined
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -44,8 +44,7 @@ export default class WatchFeature extends AbstractFeature {
|
|
|
44
44
|
|
|
45
45
|
this.watcher.on('all', async (action: ChokidarAction, path: string) => {
|
|
46
46
|
this.changesSinceLastChange.push({
|
|
47
|
-
|
|
48
|
-
version: 'v2020_07_22',
|
|
47
|
+
id: this.mapChokidarActionToSchemaId(action),
|
|
49
48
|
values: {
|
|
50
49
|
action: this.mapChokidarActionToGeneratedAction(action),
|
|
51
50
|
path,
|
|
@@ -65,7 +64,7 @@ export default class WatchFeature extends AbstractFeature {
|
|
|
65
64
|
|
|
66
65
|
private mapChokidarActionToSchemaId(
|
|
67
66
|
action: ChokidarAction
|
|
68
|
-
): GeneratedFileOrDir['
|
|
67
|
+
): GeneratedFileOrDir['id'] {
|
|
69
68
|
return action.search(/dir/gi) > -1 ? 'generatedDir' : 'generatedFile'
|
|
70
69
|
}
|
|
71
70
|
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const schema_1 = require("@sprucelabs/schema");
|
|
4
|
-
const appViewControllerAlreadyExistsSchema = {
|
|
5
|
-
id: 'appViewControllerAlreadyExists',
|
|
6
|
-
namespace: 'SpruceCli',
|
|
7
|
-
name: 'App view controller already exists',
|
|
8
|
-
fields: {}
|
|
9
|
-
};
|
|
10
|
-
schema_1.SchemaRegistry.getInstance().trackSchema(appViewControllerAlreadyExistsSchema);
|
|
11
|
-
exports.default = appViewControllerAlreadyExistsSchema;
|
|
12
|
-
//# sourceMappingURL=appViewControllerAlreadyExists.schema.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"appViewControllerAlreadyExists.schema.js","sourceRoot":"","sources":["../../../../src/.spruce/errors/spruceCli/appViewControllerAlreadyExists.schema.ts"],"names":[],"mappings":";;AAAA,+CAAmD;AAKnD,MAAM,oCAAoC,GAAiE;IAC1G,EAAE,EAAE,gCAAgC;IACpC,SAAS,EAAE,WAAW;IACtB,IAAI,EAAE,oCAAoC;IACtC,MAAM,EAAE,EACP;CACL,CAAA;AAED,uBAAc,CAAC,WAAW,EAAE,CAAC,WAAW,CAAC,oCAAoC,CAAC,CAAA;AAE9E,kBAAe,oCAAoC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CreatingAnAppViewController.test.js","sourceRoot":"","sources":["../../../../src/__tests__/behavioral/views/CreatingAnAppViewController.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"appViewControllerAlreadyExists.builder.js","sourceRoot":"","sources":["../../src/errors/appViewControllerAlreadyExists.builder.ts"],"names":[],"mappings":";;AAAA,+CAAqD;AAErD,kBAAe,IAAA,yBAAgB,EAAC;IAC5B,EAAE,EAAE,gCAAgC;IACpC,IAAI,EAAE,oCAAoC;IAC1C,MAAM,EAAE,EAAE;CACb,CAAC,CAAA"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { SchemaRegistry } from '@sprucelabs/schema'
|
|
2
|
-
import { SpruceErrors } from '../errors.types'
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
const appViewControllerAlreadyExistsSchema: SpruceErrors.SpruceCli.AppViewControllerAlreadyExistsSchema = {
|
|
7
|
-
id: 'appViewControllerAlreadyExists',
|
|
8
|
-
namespace: 'SpruceCli',
|
|
9
|
-
name: 'App view controller already exists',
|
|
10
|
-
fields: {
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
SchemaRegistry.getInstance().trackSchema(appViewControllerAlreadyExistsSchema)
|
|
15
|
-
|
|
16
|
-
export default appViewControllerAlreadyExistsSchema
|
|
File without changes
|