@travetto/scaffold 3.3.6 → 3.4.0-rc.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/scaffold",
3
- "version": "3.3.6",
3
+ "version": "3.4.0-rc.0",
4
4
  "description": "App Scaffold for the Travetto framework",
5
5
  "keywords": [
6
6
  "generator",
@@ -27,14 +27,14 @@
27
27
  "trv-scaffold": "./bin/trv-scaffold.js"
28
28
  },
29
29
  "dependencies": {
30
- "@travetto/base": "^3.3.4",
31
- "@travetto/cli": "^3.3.6",
32
- "@travetto/compiler": "^3.3.2",
30
+ "@travetto/base": "^3.4.0-rc.0",
31
+ "@travetto/cli": "^3.4.0-rc.0",
32
+ "@travetto/compiler": "^3.4.0-rc.0",
33
33
  "enquirer": "^2.4.1",
34
34
  "mustache": "^4.2.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@types/mustache": "^4.2.2"
37
+ "@types/mustache": "^4.2.4"
38
38
  },
39
39
  "travetto": {
40
40
  "displayName": "App Scaffold"
@@ -185,7 +185,7 @@ export class Context {
185
185
  }
186
186
 
187
187
  yield cliTpl`${{ type: 'Initial Build' }} `;
188
- await this.#exec('npx', ['trv', 'build']);
188
+ await this.#exec('npx', ['trvc', 'build']);
189
189
  if (this.#devDependencies.includes('@travetto/eslint')) {
190
190
  yield cliTpl`${{ type: 'ESLint Registration' }} `;
191
191
  await this.#exec('npx', ['trv', 'lint:register']);