@sprucelabs/spruce-cli 15.2.7 → 15.2.10

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +38 -38
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
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
+ ## [15.2.10](https://github.com/sprucelabsai/spruce-cli-workspace/compare/v15.2.9...v15.2.10) (2022-03-04)
7
+
8
+ **Note:** Version bump only for package @sprucelabs/spruce-cli
9
+
10
+
11
+
12
+
13
+
14
+ ## [15.2.9](https://github.com/sprucelabsai/spruce-cli-workspace/compare/v15.2.8...v15.2.9) (2022-03-02)
15
+
16
+ **Note:** Version bump only for package @sprucelabs/spruce-cli
17
+
18
+
19
+
20
+
21
+
22
+ ## [15.2.8](https://github.com/sprucelabsai/spruce-cli-workspace/compare/v15.2.7...v15.2.8) (2022-03-01)
23
+
24
+ **Note:** Version bump only for package @sprucelabs/spruce-cli
25
+
26
+
27
+
28
+
29
+
6
30
  ## [15.2.7](https://github.com/sprucelabsai/spruce-cli-workspace/compare/v15.2.6...v15.2.7) (2022-02-25)
7
31
 
8
32
  **Note:** Version bump only for package @sprucelabs/spruce-cli
package/package.json CHANGED
@@ -18,7 +18,7 @@
18
18
  ]
19
19
  },
20
20
  "license": "MIT",
21
- "version": "15.2.7",
21
+ "version": "15.2.10",
22
22
  "bin": {
23
23
  "spruce": "./build/index.js"
24
24
  },
@@ -42,9 +42,9 @@
42
42
  "scripts": {
43
43
  "build.ci": "yarn build.babel && yarn build.types && yarn build.resolve-paths && yarn lint",
44
44
  "build.dev": "yarn build.babel ; yarn build.types.resolve-paths.lint",
45
- "build.babel": "NODE_OPTIONS=--max_old_space_size=6144 babel src --out-dir build --extensions \".ts,.tsx\" --root-mode upward --source-maps --copy-files",
45
+ "build.babel": "babel src --out-dir build --extensions \".ts,.tsx\" --root-mode upward --source-maps --copy-files",
46
46
  "build.babel.debug": "node --inspect-brk=5200 ../../node_modules/.bin/babel src --out-dir build --extensions \".ts,.tsx\" --root-mode upward --source-maps --copy-files",
47
- "build.types": "NODE_OPTIONS=--max_old_space_size=6144 tsc --emitDeclarationOnly && echo PASS TYPES || (echo FAIL TYPES && false)",
47
+ "build.types": "tsc --emitDeclarationOnly && echo PASS TYPES || (echo FAIL TYPES && false)",
48
48
  "build.resolve-paths": "resolve-path-aliases --target build --patterns '**/*.js,**/*.d.ts'",
49
49
  "build.types.resolve-paths.lint": "yarn build.types && yarn resolve-paths.lint",
50
50
  "resolve-paths.lint": "yarn build.resolve-paths ; yarn lint",
@@ -56,8 +56,8 @@
56
56
  "clean.cache": "rm -rf src/.spruce/tmp && node build/tests/cleanTestCache ; echo '******** TEST CACHE CLEARED ********'",
57
57
  "clean.cache.disabled": "echo 'CLEAN.CACHE DISABLED'",
58
58
  "clean.dependencies": "rm -rf node_modules/ package-lock.json yarn.lock",
59
- "fix.lint": "NODE_OPTIONS=--max_old_space_size=6144 eslint --fix --cache '**/*.ts'",
60
- "lint": "NODE_OPTIONS=--max_old_space_size=6144 eslint --cache '**/*.ts'",
59
+ "fix.lint": "eslint --fix --cache '**/*.ts'",
60
+ "lint": "eslint --cache '**/*.ts'",
61
61
  "lint.tsc": "tsc --noEmit && echo 'spruce-cli PASS'",
62
62
  "local": "DEBUG=@sprucelabs/cli~debug node --inspect=5200 . $COMMANDS ; echo 'DONE'",
63
63
  "rebuild": "cd ../ && yarn rebuild",
@@ -65,32 +65,32 @@
65
65
  "start": "DEBUG=@sprucelabs/cli~debug node . $COMMANDS",
66
66
  "test": "yarn cache.tests && jest",
67
67
  "update.dependencies": "cd ../ && yarn update.dependencies",
68
- "watch.build.dev": "concurrently 'NODE_OPTIONS=--max_old_space_size=6144 tsc --emitDeclarationOnly -w' 'yarn build.babel --watch' \"chokidar 'src/**/*' --ignore '.*/tmp/.*' -c 'yarn build.resolve-paths'\"",
68
+ "watch.build.dev": "concurrently 'tsc --emitDeclarationOnly -w' 'yarn build.babel --watch' \"chokidar 'src/**/*' --ignore '.*/tmp/.*' -c 'yarn build.resolve-paths'\"",
69
69
  "watch.lint": "chokidar 'src/**/*' '../spruce-templates/src/**' -c 'yarn lint.tsc'",
70
70
  "watch.rebuild": "cd ../ && yarn watch.rebuild",
71
71
  "watch.tests": "yarn cache.tests && jest --watch",
72
- "watch.tsc": "NODE_OPTIONS=--max_old_space_size=6144 tsc -w --sourceMap"
72
+ "watch.tsc": "tsc -w --sourceMap"
73
73
  },
74
74
  "dependencies": {
75
75
  "@babel/cli": "^7.17.6",
76
76
  "@babel/plugin-proposal-decorators": "^7.17.2",
77
77
  "@babel/runtime": "^7.17.2",
78
78
  "@jest/reporters": "^27.5.1",
79
- "@sprucelabs/error": "^5.0.405",
80
- "@sprucelabs/heartwood-view-controllers": "^65.0.2",
81
- "@sprucelabs/jest-json-reporter": "^6.0.331",
82
- "@sprucelabs/mercury-client": "^21.0.117",
83
- "@sprucelabs/mercury-event-emitter": "^21.0.117",
84
- "@sprucelabs/mercury-types": "^27.0.139",
85
- "@sprucelabs/schema": "^27.0.1",
86
- "@sprucelabs/spruce-core-schemas": "^25.0.4",
87
- "@sprucelabs/spruce-event-plugin": "^25.1.9",
88
- "@sprucelabs/spruce-event-utils": "^18.0.143",
89
- "@sprucelabs/spruce-skill-booter": "^25.1.9",
90
- "@sprucelabs/spruce-skill-utils": "^25.0.1",
91
- "@sprucelabs/spruce-templates": "^15.2.7",
92
- "@typescript-eslint/eslint-plugin": "^5.12.1",
93
- "@typescript-eslint/parser": "^5.12.1",
79
+ "@sprucelabs/error": "^5.0.411",
80
+ "@sprucelabs/heartwood-view-controllers": "^69.0.6",
81
+ "@sprucelabs/jest-json-reporter": "^6.0.335",
82
+ "@sprucelabs/mercury-client": "^22.0.6",
83
+ "@sprucelabs/mercury-event-emitter": "^22.0.6",
84
+ "@sprucelabs/mercury-types": "^27.0.154",
85
+ "@sprucelabs/schema": "^27.1.4",
86
+ "@sprucelabs/spruce-core-schemas": "^25.0.20",
87
+ "@sprucelabs/spruce-event-plugin": "^29.0.2",
88
+ "@sprucelabs/spruce-event-utils": "^19.1.5",
89
+ "@sprucelabs/spruce-skill-booter": "^29.0.2",
90
+ "@sprucelabs/spruce-skill-utils": "^25.0.15",
91
+ "@sprucelabs/spruce-templates": "^15.2.10",
92
+ "@typescript-eslint/eslint-plugin": "^5.13.0",
93
+ "@typescript-eslint/parser": "^5.13.0",
94
94
  "cfonts": "^2.10.0",
95
95
  "chalk": "^4.1.2",
96
96
  "chokidar": "^3.5.3",
@@ -119,23 +119,23 @@
119
119
  "uuid": "^8.3.2"
120
120
  },
121
121
  "devDependencies": {
122
- "@sprucelabs/data-stores": "^9.0.3",
123
- "@sprucelabs/jest-sheets-reporter": "^1.3.15",
124
- "@sprucelabs/mercury-core-events": "^2.1.7",
125
- "@sprucelabs/resolve-path-aliases": "^1.1.1",
126
- "@sprucelabs/spruce-conversation-plugin": "^25.1.9",
127
- "@sprucelabs/spruce-deploy-plugin": "^25.1.9",
128
- "@sprucelabs/spruce-store-plugin": "^25.1.9",
129
- "@sprucelabs/spruce-test-fixtures": "^25.1.9",
130
- "@sprucelabs/test": "^7.7.282",
131
- "@sprucelabs/test-utils": "^3.0.479",
122
+ "@sprucelabs/data-stores": "^9.0.20",
123
+ "@sprucelabs/jest-sheets-reporter": "^1.3.19",
124
+ "@sprucelabs/mercury-core-events": "^3.1.3",
125
+ "@sprucelabs/resolve-path-aliases": "^1.1.5",
126
+ "@sprucelabs/spruce-conversation-plugin": "^29.0.2",
127
+ "@sprucelabs/spruce-deploy-plugin": "^29.0.2",
128
+ "@sprucelabs/spruce-store-plugin": "^29.0.2",
129
+ "@sprucelabs/spruce-test-fixtures": "^29.0.2",
130
+ "@sprucelabs/test": "^7.7.285",
131
+ "@sprucelabs/test-utils": "^3.0.487",
132
132
  "@types/blessed": "^0.1.19",
133
133
  "@types/eslint": "^8.4.1",
134
134
  "@types/fs-extra": "^9.0.13",
135
135
  "@types/inflection": "^1.13.0",
136
136
  "@types/inquirer": "^8.2.0",
137
137
  "@types/jsonwebtoken": "^8.5.8",
138
- "@types/lodash": "^4.14.178",
138
+ "@types/lodash": "^4.14.179",
139
139
  "@types/md5": "^2.3.2",
140
140
  "@types/mkdirp": "^1.0.2",
141
141
  "@types/node": "^17.0.21",
@@ -152,7 +152,7 @@
152
152
  "concurrently": "^7.0.0",
153
153
  "conventional-changelog-sprucelabs": "^1.1.2",
154
154
  "dotenv": "^16.0.0",
155
- "eslint": "^8.9.0",
155
+ "eslint": "^8.10.0",
156
156
  "eslint-config-spruce": "^10.11.2",
157
157
  "find-process": "^1.4.7",
158
158
  "jest": "^27.5.1",
@@ -163,10 +163,10 @@
163
163
  "ps-node": "^0.1.6",
164
164
  "rimraf": "^3.0.2",
165
165
  "ts-jest": "^27.1.3",
166
- "ts-node": "^10.5.0",
166
+ "ts-node": "^10.6.0",
167
167
  "tsc-watch": "^4.6.0",
168
- "tsconfig-paths": "^3.12.0",
169
- "typescript": "^4.5.5"
168
+ "tsconfig-paths": "^3.13.0",
169
+ "typescript": "^4.6.2"
170
170
  },
171
171
  "testSkillCache": {
172
172
  "everything": [
@@ -597,5 +597,5 @@
597
597
  "ora"
598
598
  ]
599
599
  },
600
- "gitHead": "07f646ce3148e8d2ef0484c1634eea2797c44e88"
600
+ "gitHead": "4d07e85deb932daf324a9bb0ecce04509c9ddd13"
601
601
  }