@sprucelabs/spruce-cli 17.1.54 → 17.1.55
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/CHANGELOG.md +4 -0
- package/build/features/onboard/OnboardFeature.js +1 -1
- package/build/features/onboard/OnboardFeature.js.map +1 -1
- package/node_modules/@typescript-eslint/parser/package.json +5 -5
- package/node_modules/@typescript-eslint/scope-manager/package.json +5 -5
- package/node_modules/@typescript-eslint/types/package.json +2 -2
- package/node_modules/@typescript-eslint/typescript-estree/package.json +5 -5
- package/node_modules/@typescript-eslint/visitor-keys/package.json +3 -3
- package/package.json +22 -22
- package/src/features/onboard/OnboardFeature.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [17.1.55](https://github.com/sprucelabsai/spruce-cli-workspace/compare/v17.1.54...v17.1.55) (2022-10-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @sprucelabs/spruce-cli
|
|
9
|
+
|
|
6
10
|
## [17.1.54](https://github.com/sprucelabsai/spruce-cli-workspace/compare/v17.1.53...v17.1.54) (2022-10-10)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @sprucelabs/spruce-cli
|
|
@@ -82,7 +82,7 @@ var OnboardFeature = /*#__PURE__*/function (_AbstractFeature) {
|
|
|
82
82
|
while (1) {
|
|
83
83
|
switch (_context2.prev = _context2.next) {
|
|
84
84
|
case 0:
|
|
85
|
-
throw new Error("I can't run commands for you yet, but will be able to soon. For now run `" + _command + '` manually.');
|
|
85
|
+
throw new Error("I can't run commands for you yet, but will be able to soon. For now run `spruce " + _command + '` manually.');
|
|
86
86
|
case 1:
|
|
87
87
|
case "end":
|
|
88
88
|
return _context2.stop();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OnboardFeature.js","names":["OnboardFeature","options","diskUtil","resolvePath","__dirname","emitter","on","handleWillExecuteCommand","bind","handleTestReporterDidBoot","onboardingStore","Store","store","OnboardingStore","ScriptLoader","LoadScripts","ui","dir","scriptsDir","commandExecuter","_command","Error","player","payload","onboarding","getMode","command","generateCommandFromPayload","confirmExpectedCommand","isExpectedCommand","ScriptPlayer","playScriptWithKey","source","contents","readFile","destination","cwd","createTestOptionsSchema","fields","testDestinationDir","defaultValue","writeFile","reset","featuresUtil","generateCommand","featureCode","actionCode","stage","getStage","AbstractFeature"],"sources":["../../../src/features/onboard/OnboardFeature.ts"],"sourcesContent":["import { diskUtil } from '@sprucelabs/spruce-skill-utils'\nimport createTestOptionsSchema from '#spruce/schemas/spruceCli/v2020_07_22/createTestOptions.schema'\nimport AbstractFeature, {\n\tFeatureDependency,\n\tFeatureOptions,\n} from '../AbstractFeature'\nimport featuresUtil from '../feature.utilities'\nimport { FeatureCode } from '../features.types'\nimport ScriptLoader from './ScriptLoader'\nimport OnboardingStore from './stores/OnboardingStore'\n\ndeclare module '../../features/features.types' {\n\tinterface FeatureMap {\n\t\tonboard: OnboardFeature\n\t}\n}\n\nexport default class OnboardFeature extends AbstractFeature {\n\tpublic code: FeatureCode = 'onboard'\n\tpublic nameReadable = 'Onboard'\n\tpublic description = 'Get building your first skill already!'\n\tpublic dependencies: FeatureDependency[] = []\n\tpublic packageDependencies = []\n\n\tpublic actionsDir = diskUtil.resolvePath(__dirname, 'actions')\n\n\tprivate onboardingStore?: OnboardingStore\n\tprivate scriptsDir = diskUtil.resolvePath(__dirname, 'scripts')\n\n\tpublic constructor(options: FeatureOptions) {\n\t\tsuper(options)\n\n\t\tvoid this.emitter.on(\n\t\t\t'feature.will-execute',\n\t\t\tthis.handleWillExecuteCommand.bind(this)\n\t\t)\n\n\t\tvoid this.emitter.on(\n\t\t\t'test.reporter-did-boot',\n\t\t\tthis.handleTestReporterDidBoot.bind(this)\n\t\t)\n\t}\n\n\tpublic OnboardingStore() {\n\t\tif (!this.onboardingStore) {\n\t\t\tthis.onboardingStore = this.Store('onboarding')\n\t\t}\n\t\treturn this.onboardingStore\n\t}\n\n\tpublic async ScriptPlayer() {\n\t\tconst store = this.OnboardingStore()\n\n\t\tconst player = await ScriptLoader.LoadScripts({\n\t\t\tui: this.ui,\n\t\t\tdir: this.scriptsDir,\n\t\t\tonboardingStore: store,\n\t\t\tcommandExecuter: async (_command: string) => {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t\"I can't run commands for you yet, but will be able to soon. For now run
|
|
1
|
+
{"version":3,"file":"OnboardFeature.js","names":["OnboardFeature","options","diskUtil","resolvePath","__dirname","emitter","on","handleWillExecuteCommand","bind","handleTestReporterDidBoot","onboardingStore","Store","store","OnboardingStore","ScriptLoader","LoadScripts","ui","dir","scriptsDir","commandExecuter","_command","Error","player","payload","onboarding","getMode","command","generateCommandFromPayload","confirmExpectedCommand","isExpectedCommand","ScriptPlayer","playScriptWithKey","source","contents","readFile","destination","cwd","createTestOptionsSchema","fields","testDestinationDir","defaultValue","writeFile","reset","featuresUtil","generateCommand","featureCode","actionCode","stage","getStage","AbstractFeature"],"sources":["../../../src/features/onboard/OnboardFeature.ts"],"sourcesContent":["import { diskUtil } from '@sprucelabs/spruce-skill-utils'\nimport createTestOptionsSchema from '#spruce/schemas/spruceCli/v2020_07_22/createTestOptions.schema'\nimport AbstractFeature, {\n\tFeatureDependency,\n\tFeatureOptions,\n} from '../AbstractFeature'\nimport featuresUtil from '../feature.utilities'\nimport { FeatureCode } from '../features.types'\nimport ScriptLoader from './ScriptLoader'\nimport OnboardingStore from './stores/OnboardingStore'\n\ndeclare module '../../features/features.types' {\n\tinterface FeatureMap {\n\t\tonboard: OnboardFeature\n\t}\n}\n\nexport default class OnboardFeature extends AbstractFeature {\n\tpublic code: FeatureCode = 'onboard'\n\tpublic nameReadable = 'Onboard'\n\tpublic description = 'Get building your first skill already!'\n\tpublic dependencies: FeatureDependency[] = []\n\tpublic packageDependencies = []\n\n\tpublic actionsDir = diskUtil.resolvePath(__dirname, 'actions')\n\n\tprivate onboardingStore?: OnboardingStore\n\tprivate scriptsDir = diskUtil.resolvePath(__dirname, 'scripts')\n\n\tpublic constructor(options: FeatureOptions) {\n\t\tsuper(options)\n\n\t\tvoid this.emitter.on(\n\t\t\t'feature.will-execute',\n\t\t\tthis.handleWillExecuteCommand.bind(this)\n\t\t)\n\n\t\tvoid this.emitter.on(\n\t\t\t'test.reporter-did-boot',\n\t\t\tthis.handleTestReporterDidBoot.bind(this)\n\t\t)\n\t}\n\n\tpublic OnboardingStore() {\n\t\tif (!this.onboardingStore) {\n\t\t\tthis.onboardingStore = this.Store('onboarding')\n\t\t}\n\t\treturn this.onboardingStore\n\t}\n\n\tpublic async ScriptPlayer() {\n\t\tconst store = this.OnboardingStore()\n\n\t\tconst player = await ScriptLoader.LoadScripts({\n\t\t\tui: this.ui,\n\t\t\tdir: this.scriptsDir,\n\t\t\tonboardingStore: store,\n\t\t\tcommandExecuter: async (_command: string) => {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t\"I can't run commands for you yet, but will be able to soon. For now run `spruce \" +\n\t\t\t\t\t\t_command +\n\t\t\t\t\t\t'` manually.'\n\t\t\t\t)\n\t\t\t},\n\t\t})\n\n\t\treturn player\n\t}\n\n\tprivate async handleWillExecuteCommand(payload: {\n\t\tfeatureCode: string\n\t\tactionCode: string\n\t}) {\n\t\tconst onboarding = this.Store('onboarding')\n\n\t\tif (onboarding.getMode() !== 'off') {\n\t\t\tconst command = this.generateCommandFromPayload(payload)\n\t\t\tawait this.confirmExpectedCommand(payload, onboarding)\n\n\t\t\tif (\n\t\t\t\tonboarding.getMode() !== 'off' &&\n\t\t\t\tthis.isExpectedCommand(command, onboarding)\n\t\t\t) {\n\t\t\t\tconst player = await this.ScriptPlayer()\n\t\t\t\tawait player.playScriptWithKey(`todo.${command}`)\n\t\t\t}\n\t\t}\n\t}\n\n\tprivate handleTestReporterDidBoot() {\n\t\tconst onboarding = this.Store('onboarding')\n\n\t\tif (onboarding.getMode() !== 'off') {\n\t\t\tconst source = diskUtil.resolvePath(\n\t\t\t\t__dirname,\n\t\t\t\t'templates',\n\t\t\t\t'RootViewController.test.ts.hbs'\n\t\t\t)\n\n\t\t\tconst contents = diskUtil.readFile(source)\n\n\t\t\tconst destination = diskUtil.resolvePath(\n\t\t\t\tthis.cwd,\n\t\t\t\tcreateTestOptionsSchema.fields.testDestinationDir.defaultValue,\n\t\t\t\t'behavioral',\n\t\t\t\t'RootViewController.test.ts'\n\t\t\t)\n\n\t\t\tdiskUtil.writeFile(destination, contents)\n\n\t\t\tthis.Store('onboarding').reset()\n\t\t}\n\t}\n\n\tprivate generateCommandFromPayload(payload: {\n\t\tfeatureCode: string\n\t\tactionCode: string\n\t}) {\n\t\treturn featuresUtil.generateCommand(payload.featureCode, payload.actionCode)\n\t}\n\n\tpublic isInstalled = async (): Promise<boolean> => {\n\t\treturn true\n\t}\n\n\tprivate async confirmExpectedCommand(\n\t\tpayload: { featureCode: string; actionCode: string },\n\t\tstore: OnboardingStore\n\t) {\n\t\tconst command = this.generateCommandFromPayload(payload)\n\t\tconst isExpectedCommand = this.isExpectedCommand(command, store)\n\n\t\tif (\n\t\t\tcommand !== 'setup.vscode' &&\n\t\t\tpayload.featureCode !== 'onboard' &&\n\t\t\t!isExpectedCommand\n\t\t) {\n\t\t\tconst player = await this.ScriptPlayer()\n\t\t\tawait player.playScriptWithKey('wrongCommand')\n\t\t}\n\t}\n\n\tprivate isExpectedCommand(command: string, store: OnboardingStore) {\n\t\tconst stage = store.getStage()\n\n\t\tconst isExpectedCommand = command === stage\n\t\treturn isExpectedCommand\n\t}\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AACA;AACA;AAIA;AAEA;AAAyC;AAAA;AAAA,IASpBA,cAAc;EAAA;EAAA;EAYlC,wBAAmBC,OAAuB,EAAE;IAAA;IAAA;IAC3C,0BAAMA,OAAO;IAAC,yFAZY,SAAS;IAAA,iGACd,SAAS;IAAA,gGACV,wCAAwC;IAAA,iGAClB,EAAE;IAAA,wGAChB,EAAE;IAAA,+FAEXC,0BAAQ,CAACC,WAAW,CAACC,SAAS,EAAE,SAAS,CAAC;IAAA;IAAA,+FAGzCF,0BAAQ,CAACC,WAAW,CAACC,SAAS,EAAE,SAAS,CAAC;IAAA,2LA8F1C;MAAA;QAAA;UAAA;YAAA;cAAA,iCACb,IAAI;YAAA;YAAA;cAAA;UAAA;QAAA;MAAA;IAAA,CACX;IA3FA,KAAK,MAAKC,OAAO,CAACC,EAAE,CACnB,sBAAsB,EACtB,MAAKC,wBAAwB,CAACC,IAAI,gDAAM,CACxC;IAED,KAAK,MAAKH,OAAO,CAACC,EAAE,CACnB,wBAAwB,EACxB,MAAKG,yBAAyB,CAACD,IAAI,gDAAM,CACzC;IAAA;EACF;EAAC;IAAA;IAAA,OAED,2BAAyB;MACxB,IAAI,CAAC,IAAI,CAACE,eAAe,EAAE;QAC1B,IAAI,CAACA,eAAe,GAAG,IAAI,CAACC,KAAK,CAAC,YAAY,CAAC;MAChD;MACA,OAAO,IAAI,CAACD,eAAe;IAC5B;EAAC;IAAA;IAAA;MAAA,kGAED;QAAA;QAAA;UAAA;YAAA;cAAA;gBACOE,KAAK,GAAG,IAAI,CAACC,eAAe,EAAE;gBAAA;gBAAA,OAEfC,wBAAY,CAACC,WAAW,CAAC;kBAC7CC,EAAE,EAAE,IAAI,CAACA,EAAE;kBACXC,GAAG,EAAE,IAAI,CAACC,UAAU;kBACpBR,eAAe,EAAEE,KAAK;kBACtBO,eAAe;oBAAA,qGAAE,kBAAOC,QAAgB;sBAAA;wBAAA;0BAAA;4BAAA;8BAAA,MACjC,IAAIC,KAAK,CACd,kFAAkF,GACjFD,QAAQ,GACR,aAAa,CACd;4BAAA;4BAAA;8BAAA;0BAAA;wBAAA;sBAAA;oBAAA,CACD;oBAAA;sBAAA;oBAAA;oBAAA;kBAAA;gBACF,CAAC,CAAC;cAAA;gBAXIE,MAAM;gBAAA,kCAaLA,MAAM;cAAA;cAAA;gBAAA;YAAA;UAAA;QAAA;MAAA,CACb;MAAA;QAAA;MAAA;MAAA;IAAA;EAAA;IAAA;IAAA;MAAA,8GAED,kBAAuCC,OAGtC;QAAA;QAAA;UAAA;YAAA;cAAA;gBACMC,UAAU,GAAG,IAAI,CAACb,KAAK,CAAC,YAAY,CAAC;gBAAA,MAEvCa,UAAU,CAACC,OAAO,EAAE,KAAK,KAAK;kBAAA;kBAAA;gBAAA;gBAC3BC,OAAO,GAAG,IAAI,CAACC,0BAA0B,CAACJ,OAAO,CAAC;gBAAA;gBAAA,OAClD,IAAI,CAACK,sBAAsB,CAACL,OAAO,EAAEC,UAAU,CAAC;cAAA;gBAAA,MAGrDA,UAAU,CAACC,OAAO,EAAE,KAAK,KAAK,IAC9B,IAAI,CAACI,iBAAiB,CAACH,OAAO,EAAEF,UAAU,CAAC;kBAAA;kBAAA;gBAAA;gBAAA;gBAAA,OAEtB,IAAI,CAACM,YAAY,EAAE;cAAA;gBAAlCR,MAAM;gBAAA;gBAAA,OACNA,MAAM,CAACS,iBAAiB,gBAASL,OAAO,EAAG;cAAA;cAAA;gBAAA;YAAA;UAAA;QAAA;MAAA,CAGnD;MAAA;QAAA;MAAA;MAAA;IAAA;EAAA;IAAA;IAAA,OAED,qCAAoC;MACnC,IAAMF,UAAU,GAAG,IAAI,CAACb,KAAK,CAAC,YAAY,CAAC;MAE3C,IAAIa,UAAU,CAACC,OAAO,EAAE,KAAK,KAAK,EAAE;QACnC,IAAMO,MAAM,GAAG9B,0BAAQ,CAACC,WAAW,CAClCC,SAAS,EACT,WAAW,EACX,gCAAgC,CAChC;QAED,IAAM6B,QAAQ,GAAG/B,0BAAQ,CAACgC,QAAQ,CAACF,MAAM,CAAC;QAE1C,IAAMG,WAAW,GAAGjC,0BAAQ,CAACC,WAAW,CACvC,IAAI,CAACiC,GAAG,EACRC,6BAAuB,CAACC,MAAM,CAACC,kBAAkB,CAACC,YAAY,EAC9D,YAAY,EACZ,4BAA4B,CAC5B;QAEDtC,0BAAQ,CAACuC,SAAS,CAACN,WAAW,EAAEF,QAAQ,CAAC;QAEzC,IAAI,CAACtB,KAAK,CAAC,YAAY,CAAC,CAAC+B,KAAK,EAAE;MACjC;IACD;EAAC;IAAA;IAAA,OAED,oCAAmCnB,OAGlC,EAAE;MACF,OAAOoB,mBAAY,CAACC,eAAe,CAACrB,OAAO,CAACsB,WAAW,EAAEtB,OAAO,CAACuB,UAAU,CAAC;IAC7E;EAAC;IAAA;IAAA;MAAA,4GAMD,kBACCvB,OAAoD,EACpDX,KAAsB;QAAA;QAAA;UAAA;YAAA;cAAA;gBAEhBc,OAAO,GAAG,IAAI,CAACC,0BAA0B,CAACJ,OAAO,CAAC;gBAClDM,iBAAiB,GAAG,IAAI,CAACA,iBAAiB,CAACH,OAAO,EAAEd,KAAK,CAAC;gBAAA,MAG/Dc,OAAO,KAAK,cAAc,IAC1BH,OAAO,CAACsB,WAAW,KAAK,SAAS,IACjC,CAAChB,iBAAiB;kBAAA;kBAAA;gBAAA;gBAAA;gBAAA,OAEG,IAAI,CAACC,YAAY,EAAE;cAAA;gBAAlCR,MAAM;gBAAA;gBAAA,OACNA,MAAM,CAACS,iBAAiB,CAAC,cAAc,CAAC;cAAA;cAAA;gBAAA;YAAA;UAAA;QAAA;MAAA,CAE/C;MAAA;QAAA;MAAA;MAAA;IAAA;EAAA;IAAA;IAAA,OAED,2BAA0BL,OAAe,EAAEd,KAAsB,EAAE;MAClE,IAAMmC,KAAK,GAAGnC,KAAK,CAACoC,QAAQ,EAAE;MAE9B,IAAMnB,iBAAiB,GAAGH,OAAO,KAAKqB,KAAK;MAC3C,OAAOlB,iBAAiB;IACzB;EAAC;EAAA;AAAA,EAlI0CoB,4BAAe;AAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/parser",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.40.0",
|
|
4
4
|
"description": "An ESLint custom parser which leverages TypeScript ESTree",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@typescript-eslint/scope-manager": "5.
|
|
49
|
-
"@typescript-eslint/types": "5.
|
|
50
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
48
|
+
"@typescript-eslint/scope-manager": "5.40.0",
|
|
49
|
+
"@typescript-eslint/types": "5.40.0",
|
|
50
|
+
"@typescript-eslint/typescript-estree": "5.40.0",
|
|
51
51
|
"debug": "^4.3.4"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
]
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "6ac0aa7ef4506031687b92240f5cbdd13f568917"
|
|
75
75
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/scope-manager",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.40.0",
|
|
4
4
|
"description": "TypeScript scope analyser for ESLint",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"typecheck": "cd ../../ && nx typecheck @typescript-eslint/scope-manager"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@typescript-eslint/types": "5.
|
|
42
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
41
|
+
"@typescript-eslint/types": "5.40.0",
|
|
42
|
+
"@typescript-eslint/visitor-keys": "5.40.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/glob": "*",
|
|
46
|
-
"@typescript-eslint/typescript-estree": "5.
|
|
46
|
+
"@typescript-eslint/typescript-estree": "5.40.0",
|
|
47
47
|
"glob": "*",
|
|
48
48
|
"jest-specific-snapshot": "*",
|
|
49
49
|
"make-dir": "*",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
]
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "6ac0aa7ef4506031687b92240f5cbdd13f568917"
|
|
67
67
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/types",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.40.0",
|
|
4
4
|
"description": "Types for the TypeScript-ESTree AST spec",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"typescript": "*"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "6ac0aa7ef4506031687b92240f5cbdd13f568917"
|
|
84
84
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/typescript-estree",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.40.0",
|
|
4
4
|
"description": "A parser that converts TypeScript source code into an ESTree compatible form",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@typescript-eslint/types": "5.
|
|
46
|
-
"@typescript-eslint/visitor-keys": "5.
|
|
45
|
+
"@typescript-eslint/types": "5.40.0",
|
|
46
|
+
"@typescript-eslint/visitor-keys": "5.40.0",
|
|
47
47
|
"debug": "^4.3.4",
|
|
48
48
|
"globby": "^11.1.0",
|
|
49
49
|
"is-glob": "^4.0.3",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@types/is-glob": "*",
|
|
60
60
|
"@types/semver": "*",
|
|
61
61
|
"@types/tmp": "*",
|
|
62
|
-
"@typescript-eslint/shared-fixtures": "5.
|
|
62
|
+
"@typescript-eslint/shared-fixtures": "5.40.0",
|
|
63
63
|
"glob": "*",
|
|
64
64
|
"jest-specific-snapshot": "*",
|
|
65
65
|
"make-dir": "*",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
]
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "6ac0aa7ef4506031687b92240f5cbdd13f568917"
|
|
86
86
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/visitor-keys",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.40.0",
|
|
4
4
|
"description": "Visitor keys used to help traverse the TypeScript-ESTree AST",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@typescript-eslint/types": "5.
|
|
42
|
+
"@typescript-eslint/types": "5.40.0",
|
|
43
43
|
"eslint-visitor-keys": "^3.3.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
]
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "6ac0aa7ef4506031687b92240f5cbdd13f568917"
|
|
60
60
|
}
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
]
|
|
19
19
|
},
|
|
20
20
|
"license": "MIT",
|
|
21
|
-
"version": "17.1.
|
|
21
|
+
"version": "17.1.55",
|
|
22
22
|
"bin": {
|
|
23
23
|
"spruce": "./build/index.js"
|
|
24
24
|
},
|
|
@@ -74,19 +74,19 @@
|
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"@babel/cli": "^7.19.3",
|
|
76
76
|
"@babel/plugin-proposal-decorators": "^7.19.3",
|
|
77
|
-
"@babel/runtime": "^7.19.
|
|
77
|
+
"@babel/runtime": "^7.19.4",
|
|
78
78
|
"@jest/reporters": "^29.1.2",
|
|
79
79
|
"@sprucelabs/error": "^5.0.523",
|
|
80
|
-
"@sprucelabs/heartwood-view-controllers": "^
|
|
81
|
-
"@sprucelabs/jest-json-reporter": "^6.0.
|
|
82
|
-
"@sprucelabs/mercury-client": "^
|
|
83
|
-
"@sprucelabs/mercury-event-emitter": "^
|
|
84
|
-
"@sprucelabs/mercury-types": "^
|
|
85
|
-
"@sprucelabs/schema": "^28.5.
|
|
86
|
-
"@sprucelabs/spruce-core-schemas": "^
|
|
87
|
-
"@sprucelabs/spruce-event-utils": "^
|
|
88
|
-
"@sprucelabs/spruce-skill-utils": "^
|
|
89
|
-
"@sprucelabs/spruce-templates": "^17.1.
|
|
80
|
+
"@sprucelabs/heartwood-view-controllers": "^94.0.4",
|
|
81
|
+
"@sprucelabs/jest-json-reporter": "^6.0.494",
|
|
82
|
+
"@sprucelabs/mercury-client": "^33.0.4",
|
|
83
|
+
"@sprucelabs/mercury-event-emitter": "^33.0.4",
|
|
84
|
+
"@sprucelabs/mercury-types": "^37.0.3",
|
|
85
|
+
"@sprucelabs/schema": "^28.5.37",
|
|
86
|
+
"@sprucelabs/spruce-core-schemas": "^35.1.2",
|
|
87
|
+
"@sprucelabs/spruce-event-utils": "^29.0.3",
|
|
88
|
+
"@sprucelabs/spruce-skill-utils": "^28.0.2",
|
|
89
|
+
"@sprucelabs/spruce-templates": "^17.1.55",
|
|
90
90
|
"@typescript-eslint/eslint-plugin": "^5.27.1",
|
|
91
91
|
"@typescript-eslint/parser": "^5.27.1",
|
|
92
92
|
"cfonts": "^3.1.1",
|
|
@@ -114,16 +114,16 @@
|
|
|
114
114
|
"uuid": "^9.0.0"
|
|
115
115
|
},
|
|
116
116
|
"devDependencies": {
|
|
117
|
-
"@sprucelabs/data-stores": "^
|
|
118
|
-
"@sprucelabs/jest-sheets-reporter": "^
|
|
119
|
-
"@sprucelabs/mercury-core-events": "^
|
|
117
|
+
"@sprucelabs/data-stores": "^19.0.2",
|
|
118
|
+
"@sprucelabs/jest-sheets-reporter": "^2.0.2",
|
|
119
|
+
"@sprucelabs/mercury-core-events": "^14.0.4",
|
|
120
120
|
"@sprucelabs/resolve-path-aliases": "^1.1.111",
|
|
121
|
-
"@sprucelabs/spruce-conversation-plugin": "^50.0.
|
|
122
|
-
"@sprucelabs/spruce-deploy-plugin": "^50.0.
|
|
123
|
-
"@sprucelabs/spruce-store-plugin": "^50.0.
|
|
124
|
-
"@sprucelabs/spruce-test-fixtures": "^50.0.
|
|
121
|
+
"@sprucelabs/spruce-conversation-plugin": "^50.0.22",
|
|
122
|
+
"@sprucelabs/spruce-deploy-plugin": "^50.0.22",
|
|
123
|
+
"@sprucelabs/spruce-store-plugin": "^50.0.22",
|
|
124
|
+
"@sprucelabs/spruce-test-fixtures": "^50.0.22",
|
|
125
125
|
"@sprucelabs/test": "^7.7.371",
|
|
126
|
-
"@sprucelabs/test-utils": "^3.2.
|
|
126
|
+
"@sprucelabs/test-utils": "^3.2.26",
|
|
127
127
|
"@types/blessed": "^0.1.19",
|
|
128
128
|
"@types/eslint": "^8.4.6",
|
|
129
129
|
"@types/fs-extra": "^9.0.13",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"@types/lodash": "^4.14.186",
|
|
132
132
|
"@types/md5": "^2.3.2",
|
|
133
133
|
"@types/mkdirp": "^1.0.2",
|
|
134
|
-
"@types/node": "^18.8.
|
|
134
|
+
"@types/node": "^18.8.5",
|
|
135
135
|
"@types/promise.allsettled": "^1.0.3",
|
|
136
136
|
"@types/ps-node": "^0.1.1",
|
|
137
137
|
"@types/rimraf": "^3.0.2",
|
|
@@ -619,5 +619,5 @@
|
|
|
619
619
|
"terminal-kit"
|
|
620
620
|
]
|
|
621
621
|
},
|
|
622
|
-
"gitHead": "
|
|
622
|
+
"gitHead": "bfd889bde2dae5ee64fbbed5bc00896063f5f9e1"
|
|
623
623
|
}
|
|
@@ -57,7 +57,7 @@ export default class OnboardFeature extends AbstractFeature {
|
|
|
57
57
|
onboardingStore: store,
|
|
58
58
|
commandExecuter: async (_command: string) => {
|
|
59
59
|
throw new Error(
|
|
60
|
-
"I can't run commands for you yet, but will be able to soon. For now run `" +
|
|
60
|
+
"I can't run commands for you yet, but will be able to soon. For now run `spruce " +
|
|
61
61
|
_command +
|
|
62
62
|
'` manually.'
|
|
63
63
|
)
|