@sprucelabs/spruce-conversation-plugin 45.2.8 → 46.0.1
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/build/__tests__/behavioral/CheckingHealth.test.d.ts +10 -0
- package/build/__tests__/behavioral/CheckingHealth.test.js +87 -0
- package/build/__tests__/behavioral/KillingASkill.test.d.ts +4 -0
- package/build/__tests__/behavioral/KillingASkill.test.js +27 -0
- package/build/__tests__/behavioral/RegisteringConversationsOnBoot.test.d.ts +11 -0
- package/build/__tests__/behavioral/RegisteringConversationsOnBoot.test.js +106 -0
- package/build/__tests__/behavioral/RespondingToMessages.test.d.ts +13 -0
- package/build/__tests__/behavioral/RespondingToMessages.test.js +139 -0
- package/build/__tests__/behavioral/TestingAConversation.test.d.ts +10 -0
- package/build/__tests__/behavioral/TestingAConversation.test.js +70 -0
- package/build/__tests__/implementation/ConversationCoordinator.test.d.ts +15 -0
- package/build/__tests__/implementation/ConversationCoordinator.test.js +142 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/EmailField.test.d.ts +7 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/EmailField.test.js +71 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/MessageGraphicsInterface.test.d.ts +4 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/MessageGraphicsInterface.test.js +42 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/SelectField.test.d.ts +7 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/SelectField.test.js +71 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/TextField.test.d.ts +6 -0
- package/build/__tests__/implementation/MessageGraphicsInterface/TextField.test.js +46 -0
- package/build/__tests__/implementation/ScriptTester.test.d.ts +18 -0
- package/build/__tests__/implementation/ScriptTester.test.js +459 -0
- package/build/__tests__/implementation/SuggesterUtil.test.d.ts +7 -0
- package/build/__tests__/implementation/SuggesterUtil.test.js +63 -0
- package/build/__tests__/implementation/TopicLoader.test.d.ts +8 -0
- package/build/__tests__/implementation/TopicLoader.test.js +66 -0
- package/build/__tests__/implementation/TopicScriptPlayer.test.d.ts +21 -0
- package/build/__tests__/implementation/TopicScriptPlayer.test.js +413 -0
- package/build/__tests__/implementation/TopicSuggester.test.d.ts +8 -0
- package/build/__tests__/implementation/TopicSuggester.test.js +131 -0
- package/build/__tests__/testDirsAndFiles/bad-empty/conversations/bookAppointment.topic.d.ts +0 -0
- package/build/__tests__/testDirsAndFiles/bad-empty/conversations/bookAppointment.topic.js +1 -0
- package/build/__tests__/testDirsAndFiles/bad-missing-params/conversations/bookAppointment.topic.d.ts +2 -0
- package/build/__tests__/testDirsAndFiles/bad-missing-params/conversations/bookAppointment.topic.js +4 -0
- package/build/__tests__/testDirsAndFiles/bad-skill/build/.spruce/events/listeners.d.ts +2 -0
- package/build/__tests__/testDirsAndFiles/bad-skill/build/.spruce/events/listeners.js +3 -0
- package/build/__tests__/testDirsAndFiles/bad-skill/build/conversations/bookAppointment.topic.d.ts +2 -0
- package/build/__tests__/testDirsAndFiles/bad-skill/build/conversations/bookAppointment.topic.js +4 -0
- package/build/__tests__/testDirsAndFiles/empty-skill/build/.spruce/events/listeners.d.ts +2 -0
- package/build/__tests__/testDirsAndFiles/empty-skill/build/.spruce/events/listeners.js +3 -0
- package/build/__tests__/testDirsAndFiles/good/conversations/bookAppointment.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/good/conversations/bookAppointment.topic.js +8 -0
- package/build/__tests__/testDirsAndFiles/good/conversations/cancelAppointment.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/good/conversations/cancelAppointment.topic.js +8 -0
- package/build/__tests__/testDirsAndFiles/skill/build/.spruce/events/listeners.d.ts +2 -0
- package/build/__tests__/testDirsAndFiles/skill/build/.spruce/events/listeners.js +3 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/bookAppointment.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/bookAppointment.topic.js +8 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/cancelAppointment.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/cancelAppointment.topic.js +8 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColor.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColor.topic.js +18 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColorTopicChanger.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColorTopicChanger.topic.js +18 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/mixedStringsAndCallbacks.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill/build/conversations/mixedStringsAndCallbacks.topic.js +29 -0
- package/build/__tests__/testDirsAndFiles/skill-assertions/build/.spruce/events/listeners.d.ts +2 -0
- package/build/__tests__/testDirsAndFiles/skill-assertions/build/.spruce/events/listeners.js +3 -0
- package/build/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptCallbackOptions.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptCallbackOptions.topic.js +22 -0
- package/build/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptOnlyCalledOnce.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptOnlyCalledOnce.topic.js +14 -0
- package/build/__tests__/testDirsAndFiles/skill-with-script-that-throws/build/.spruce/events/listeners.d.ts +2 -0
- package/build/__tests__/testDirsAndFiles/skill-with-script-that-throws/build/.spruce/events/listeners.js +3 -0
- package/build/__tests__/testDirsAndFiles/skill-with-script-that-throws/build/conversations/cancelAppointment.topic.d.ts +3 -0
- package/build/__tests__/testDirsAndFiles/skill-with-script-that-throws/build/conversations/cancelAppointment.topic.js +12 -0
- package/build/esm/__tests__/behavioral/CheckingHealth.test.d.ts +10 -0
- package/build/esm/__tests__/behavioral/CheckingHealth.test.js +104 -0
- package/build/esm/__tests__/behavioral/KillingASkill.test.d.ts +4 -0
- package/build/esm/__tests__/behavioral/KillingASkill.test.js +32 -0
- package/build/esm/__tests__/behavioral/RegisteringConversationsOnBoot.test.d.ts +11 -0
- package/build/esm/__tests__/behavioral/RegisteringConversationsOnBoot.test.js +126 -0
- package/build/esm/__tests__/behavioral/RespondingToMessages.test.d.ts +13 -0
- package/build/esm/__tests__/behavioral/RespondingToMessages.test.js +156 -0
- package/build/esm/__tests__/behavioral/TestingAConversation.test.d.ts +10 -0
- package/build/esm/__tests__/behavioral/TestingAConversation.test.js +93 -0
- package/build/esm/__tests__/implementation/ConversationCoordinator.test.d.ts +15 -0
- package/build/esm/__tests__/implementation/ConversationCoordinator.test.js +168 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/EmailField.test.d.ts +7 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/EmailField.test.js +82 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/MessageGraphicsInterface.test.d.ts +4 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/MessageGraphicsInterface.test.js +47 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/SelectField.test.d.ts +7 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/SelectField.test.js +80 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/TextField.test.d.ts +6 -0
- package/build/esm/__tests__/implementation/MessageGraphicsInterface/TextField.test.js +55 -0
- package/build/esm/__tests__/implementation/ScriptTester.test.d.ts +18 -0
- package/build/esm/__tests__/implementation/ScriptTester.test.js +465 -0
- package/build/esm/__tests__/implementation/SuggesterUtil.test.d.ts +7 -0
- package/build/esm/__tests__/implementation/SuggesterUtil.test.js +74 -0
- package/build/esm/__tests__/implementation/TopicLoader.test.d.ts +8 -0
- package/build/esm/__tests__/implementation/TopicLoader.test.js +79 -0
- package/build/esm/__tests__/implementation/TopicScriptPlayer.test.d.ts +21 -0
- package/build/esm/__tests__/implementation/TopicScriptPlayer.test.js +452 -0
- package/build/esm/__tests__/implementation/TopicSuggester.test.d.ts +8 -0
- package/build/esm/__tests__/implementation/TopicSuggester.test.js +124 -0
- package/build/esm/__tests__/testDirsAndFiles/bad-empty/conversations/bookAppointment.topic.d.ts +0 -0
- package/build/esm/__tests__/testDirsAndFiles/bad-empty/conversations/bookAppointment.topic.js +1 -0
- package/build/esm/__tests__/testDirsAndFiles/bad-missing-params/conversations/bookAppointment.topic.d.ts +2 -0
- package/build/esm/__tests__/testDirsAndFiles/bad-missing-params/conversations/bookAppointment.topic.js +2 -0
- package/build/esm/__tests__/testDirsAndFiles/bad-skill/build/conversations/bookAppointment.topic.d.ts +2 -0
- package/build/esm/__tests__/testDirsAndFiles/bad-skill/build/conversations/bookAppointment.topic.js +2 -0
- package/build/esm/__tests__/testDirsAndFiles/good/conversations/bookAppointment.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/good/conversations/bookAppointment.topic.js +6 -0
- package/build/esm/__tests__/testDirsAndFiles/good/conversations/cancelAppointment.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/good/conversations/cancelAppointment.topic.js +6 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/bookAppointment.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/bookAppointment.topic.js +6 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/cancelAppointment.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/cancelAppointment.topic.js +6 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColor.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColor.topic.js +25 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColorTopicChanger.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/favoriteColorTopicChanger.topic.js +25 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/mixedStringsAndCallbacks.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill/build/conversations/mixedStringsAndCallbacks.topic.js +36 -0
- package/build/esm/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptCallbackOptions.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptCallbackOptions.topic.js +29 -0
- package/build/esm/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptOnlyCalledOnce.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill-assertions/build/conversations/assertsScriptOnlyCalledOnce.topic.js +21 -0
- package/build/esm/__tests__/testDirsAndFiles/skill-with-script-that-throws/build/conversations/cancelAppointment.topic.d.ts +3 -0
- package/build/esm/__tests__/testDirsAndFiles/skill-with-script-that-throws/build/conversations/cancelAppointment.topic.js +10 -0
- package/package.json +10 -10
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
const topicDefinition = {
|
|
11
|
+
label: 'favorite color',
|
|
12
|
+
utterances: ['favorite color'],
|
|
13
|
+
script: [
|
|
14
|
+
'what is your favorite color?',
|
|
15
|
+
(options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
16
|
+
const answer = yield options.ui.prompt({ type: 'text', isRequired: true });
|
|
17
|
+
options.ui.renderLine(answer);
|
|
18
|
+
return {
|
|
19
|
+
transitionConversationTo: 'discovery',
|
|
20
|
+
repairs: ['go', 'team'],
|
|
21
|
+
};
|
|
22
|
+
}),
|
|
23
|
+
],
|
|
24
|
+
};
|
|
25
|
+
export default topicDefinition;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
const topicDefinition = {
|
|
11
|
+
label: 'favorite color',
|
|
12
|
+
utterances: ['favorite color'],
|
|
13
|
+
script: [
|
|
14
|
+
'what is your favorite color?',
|
|
15
|
+
(options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
16
|
+
const answer = yield options.ui.prompt({ type: 'text', isRequired: true });
|
|
17
|
+
options.ui.renderLine(answer);
|
|
18
|
+
return {
|
|
19
|
+
transitionConversationTo: 'discovery',
|
|
20
|
+
topicChangers: ['now', 'this'],
|
|
21
|
+
};
|
|
22
|
+
}),
|
|
23
|
+
],
|
|
24
|
+
};
|
|
25
|
+
export default topicDefinition;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
const topicDefinition = {
|
|
11
|
+
label: 'mixed strings and callback',
|
|
12
|
+
utterances: ['mixed'],
|
|
13
|
+
script: [
|
|
14
|
+
'string 1',
|
|
15
|
+
(options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
16
|
+
const answer = yield options.ui.prompt({
|
|
17
|
+
type: 'text',
|
|
18
|
+
isRequired: true,
|
|
19
|
+
label: 'prompt 1',
|
|
20
|
+
});
|
|
21
|
+
options.ui.renderLine(answer);
|
|
22
|
+
}),
|
|
23
|
+
'string 2',
|
|
24
|
+
(options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
25
|
+
const answer = yield options.ui.prompt({
|
|
26
|
+
type: 'text',
|
|
27
|
+
isRequired: true,
|
|
28
|
+
label: 'prompt 2',
|
|
29
|
+
});
|
|
30
|
+
options.ui.renderLine(answer);
|
|
31
|
+
return {};
|
|
32
|
+
}),
|
|
33
|
+
['and done', 'and done', 'and done'],
|
|
34
|
+
],
|
|
35
|
+
};
|
|
36
|
+
export default topicDefinition;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { assert } from '@sprucelabs/test';
|
|
11
|
+
const topicDefinition = {
|
|
12
|
+
label: 'asserts good callback options',
|
|
13
|
+
utterances: ['good options'],
|
|
14
|
+
script: [
|
|
15
|
+
(options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
16
|
+
assert.isTruthy(options);
|
|
17
|
+
assert.isFunction(options.rand);
|
|
18
|
+
assert.isTruthy(options.message);
|
|
19
|
+
assert.isEqual(options.message.body, 'hello');
|
|
20
|
+
}),
|
|
21
|
+
(options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
22
|
+
assert.isTruthy(options);
|
|
23
|
+
assert.isFunction(options.rand);
|
|
24
|
+
assert.isTruthy(options.message);
|
|
25
|
+
assert.isEqual(options.message.body, 'hello');
|
|
26
|
+
}),
|
|
27
|
+
],
|
|
28
|
+
};
|
|
29
|
+
export default topicDefinition;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { assert } from '@sprucelabs/test';
|
|
11
|
+
const topicDefinition = {
|
|
12
|
+
label: 'asserts only called once',
|
|
13
|
+
utterances: ['only called once'],
|
|
14
|
+
script: [
|
|
15
|
+
(options) => __awaiter(void 0, void 0, void 0, function* () {
|
|
16
|
+
assert.isFalsy(options.state.hasBeenRun);
|
|
17
|
+
options.state.hasBeenRun = true;
|
|
18
|
+
}),
|
|
19
|
+
],
|
|
20
|
+
};
|
|
21
|
+
export default topicDefinition;
|
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@types/inquirer"
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
|
-
"version": "
|
|
16
|
+
"version": "46.0.1",
|
|
17
17
|
"files": [
|
|
18
18
|
"build/**/*",
|
|
19
19
|
"!build/__tests__",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"clean.all": "yarn clean.dependencies && yarn clean.build",
|
|
47
47
|
"clean.build": "rm -rf build/",
|
|
48
48
|
"clean.dependencies": "rm -rf node_modules/ package-lock.json yarn.lock",
|
|
49
|
-
"clean.dist": "
|
|
49
|
+
"clean.dist": "true",
|
|
50
50
|
"fix.lint": "cd ../ && yarn fix.lint",
|
|
51
51
|
"fix.lint.local": "eslint --fix --cache '**/*.ts'",
|
|
52
52
|
"lint": "eslint --cache '**/*.ts'",
|
|
@@ -65,14 +65,14 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@nlpjs/nlu": "^4.23.5",
|
|
67
67
|
"@sprucelabs/error": "^5.0.490",
|
|
68
|
-
"@sprucelabs/mercury-core-events": "^12.0.
|
|
68
|
+
"@sprucelabs/mercury-core-events": "^12.0.121",
|
|
69
69
|
"@sprucelabs/schema": "^28.4.3",
|
|
70
70
|
"@sprucelabs/spruce-core-schemas": "^34.2.31",
|
|
71
|
-
"@sprucelabs/spruce-event-plugin": "^
|
|
72
|
-
"@sprucelabs/spruce-event-utils": "^27.0.
|
|
73
|
-
"@sprucelabs/spruce-skill-booter": "^
|
|
74
|
-
"@sprucelabs/spruce-skill-utils": "^26.4.
|
|
75
|
-
"@sprucelabs/spruce-test-fixtures": "^
|
|
71
|
+
"@sprucelabs/spruce-event-plugin": "^46.0.1",
|
|
72
|
+
"@sprucelabs/spruce-event-utils": "^27.0.99",
|
|
73
|
+
"@sprucelabs/spruce-skill-booter": "^46.0.1",
|
|
74
|
+
"@sprucelabs/spruce-skill-utils": "^26.4.5",
|
|
75
|
+
"@sprucelabs/spruce-test-fixtures": "^46.0.1",
|
|
76
76
|
"fuzzyset": "^1.0.7",
|
|
77
77
|
"globby": "^11.0.4",
|
|
78
78
|
"inquirer": "^8.2.4",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@sprucelabs/esm-postbuild": "^1.0.539",
|
|
84
84
|
"@sprucelabs/jest-json-reporter": "^6.0.435",
|
|
85
|
-
"@sprucelabs/mercury-client": "^31.0.
|
|
85
|
+
"@sprucelabs/mercury-client": "^31.0.119",
|
|
86
86
|
"@sprucelabs/resolve-path-aliases": "^1.1.77",
|
|
87
87
|
"@sprucelabs/semantic-release": "^4.0.8",
|
|
88
88
|
"@sprucelabs/test": "^7.7.340",
|
|
@@ -119,5 +119,5 @@
|
|
|
119
119
|
"^#spruce/(.*)$": "<rootDir>/build/.spruce/$1"
|
|
120
120
|
}
|
|
121
121
|
},
|
|
122
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "b02eac71dbca3e9a73de02e27b87d797529ed78c"
|
|
123
123
|
}
|