@sprucelabs/spruce-cli 17.1.48 → 17.1.50
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 +2524 -8160
- package/build/features/onboard/OnboardFeature.js +2 -2
- package/build/features/onboard/OnboardFeature.js.map +1 -1
- package/build/features/onboard/templates/{ManagingTodos.test.ts.hbs → RootViewController.test.ts.hbs} +2 -2
- package/build/features/skill/actions/RegisterAction.js +1 -1
- package/build/features/skill/actions/RegisterAction.js.map +1 -1
- package/node_modules/@typescript-eslint/parser/_ts3.4/dist/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/parser/_ts3.4/dist/parser.d.ts +22 -0
- 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/_ts3.4/dist/generated/ast-spec.d.ts +1732 -0
- package/node_modules/@typescript-eslint/types/_ts3.4/dist/index.d.ts +5 -0
- package/node_modules/@typescript-eslint/types/_ts3.4/dist/lib.d.ts +3 -0
- package/node_modules/@typescript-eslint/types/_ts3.4/dist/parser-options.d.ts +36 -0
- package/node_modules/@typescript-eslint/types/_ts3.4/dist/ts-estree.d.ts +9 -0
- package/node_modules/@typescript-eslint/types/package.json +2 -2
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ast-converter.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/convert-comments.d.ts +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/convert.d.ts +159 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createDefaultProgram.d.ts +12 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createIsolatedProgram.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createProjectProgram.d.ts +11 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createSourceFile.d.ts +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createWatchProgram.d.ts +19 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/getScriptKind.d.ts +5 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/shared.d.ts +22 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/useProvidedPrograms.d.ts +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/getModifiers.d.ts +4 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/index.d.ts +12 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/jsx/xhtml-entities.d.ts +2 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/node-utils.d.ts +231 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parser-options.d.ts +188 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parser.d.ts +25 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/semantic-or-syntactic-errors.d.ts +13 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/simple-traverse.d.ts +9 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ts-estree/estree-to-ts-node-types.d.ts +175 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ts-estree/index.d.ts +4 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ts-estree/ts-nodes.d.ts +18 -0
- package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/version-check.d.ts +3 -0
- package/node_modules/@typescript-eslint/typescript-estree/package.json +5 -5
- package/node_modules/@typescript-eslint/visitor-keys/_ts3.4/dist/get-keys.d.ts +4 -0
- package/node_modules/@typescript-eslint/visitor-keys/_ts3.4/dist/index.d.ts +3 -0
- package/node_modules/@typescript-eslint/visitor-keys/_ts3.4/dist/visitor-keys.d.ts +6 -0
- package/node_modules/@typescript-eslint/visitor-keys/package.json +3 -3
- package/package.json +30 -30
- package/src/features/onboard/OnboardFeature.ts +2 -2
- package/src/features/onboard/templates/{ManagingTodos.test.ts.hbs → RootViewController.test.ts.hbs} +2 -2
- package/src/features/skill/actions/RegisterAction.ts +1 -1
|
@@ -94,7 +94,7 @@ export default class OnboardFeature extends AbstractFeature {
|
|
|
94
94
|
const source = diskUtil.resolvePath(
|
|
95
95
|
__dirname,
|
|
96
96
|
'templates',
|
|
97
|
-
'
|
|
97
|
+
'RootViewController.test.ts.hbs'
|
|
98
98
|
)
|
|
99
99
|
|
|
100
100
|
const contents = diskUtil.readFile(source)
|
|
@@ -103,7 +103,7 @@ export default class OnboardFeature extends AbstractFeature {
|
|
|
103
103
|
this.cwd,
|
|
104
104
|
createTestOptionsSchema.fields.testDestinationDir.defaultValue,
|
|
105
105
|
'behavioral',
|
|
106
|
-
'
|
|
106
|
+
'RootViewController.test.ts'
|
|
107
107
|
)
|
|
108
108
|
|
|
109
109
|
diskUtil.writeFile(destination, contents)
|
package/src/features/onboard/templates/{ManagingTodos.test.ts.hbs → RootViewController.test.ts.hbs}
RENAMED
|
@@ -17,14 +17,14 @@ import AbstractSpruceTest, { test, assert } from '@sprucelabs/test-utils'
|
|
|
17
17
|
|
|
18
18
|
// 🌲🤖
|
|
19
19
|
|
|
20
|
-
export default class
|
|
20
|
+
export default class RootViewControllerTest extends AbstractSpruceTest {
|
|
21
21
|
@test()
|
|
22
22
|
protected static async introduction() {
|
|
23
23
|
const script: string[] = [
|
|
24
24
|
'Hey there! 👋',
|
|
25
25
|
"I'm so happy we've made it this far.",
|
|
26
26
|
'I have gone ahead and created your first test.',
|
|
27
|
-
"All you gotta do is click on 'behavior/
|
|
27
|
+
"All you gotta do is click on 'behavior/RootViewController.test.ts' and then 'Open' to get started!",
|
|
28
28
|
'See you soon! 🌲🤖',
|
|
29
29
|
"PS: I'm going to fail this test now.",
|
|
30
30
|
]
|
|
@@ -81,7 +81,7 @@ export default class RegisterAction extends AbstractAction<OptionsSchema> {
|
|
|
81
81
|
export function generateSkillSummaryLines(skill: RegisteredSkill) {
|
|
82
82
|
return [
|
|
83
83
|
`Name: ${skill.name}`,
|
|
84
|
-
`
|
|
84
|
+
`Namespace: ${skill.slug}`,
|
|
85
85
|
`ID: ${skill.id}`,
|
|
86
86
|
`API Key: ${skill.apiKey}`,
|
|
87
87
|
]
|