ember-cli 6.5.0-beta.0 → 6.5.0-beta.2

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.
@@ -32,6 +32,12 @@ module.exports = NewCommand.extend({
32
32
  description: 'Installs the optional default CI blueprint. Only Github Actions is supported at the moment.',
33
33
  },
34
34
  { name: 'typescript', type: Boolean, default: false, description: 'Set up the addon to use TypeScript' },
35
+ {
36
+ name: 'strict',
37
+ type: Boolean,
38
+ default: false,
39
+ description: 'Use GJS/GTS templates by default for generated components, tests, and route templates',
40
+ },
35
41
  ],
36
42
 
37
43
  anonymousOptions: ['<addon-name>'],
@@ -53,6 +53,12 @@ module.exports = Command.extend({
53
53
  description: 'Include ember-data dependencies and configuration',
54
54
  },
55
55
  { name: 'typescript', type: Boolean, default: false, description: 'Set up the app to use TypeScript' },
56
+ {
57
+ name: 'strict',
58
+ type: Boolean,
59
+ default: false,
60
+ description: 'Use GJS/GTS templates by default for generated components, tests, and route templates',
61
+ },
56
62
  ],
57
63
 
58
64
  anonymousOptions: ['<glob-pattern>'],
@@ -57,6 +57,12 @@ module.exports = Command.extend({
57
57
  description: 'Create a new Ember app/addon in an interactive way.',
58
58
  },
59
59
  { name: 'typescript', type: Boolean, default: false, description: 'Set up the app to use TypeScript' },
60
+ {
61
+ name: 'strict',
62
+ type: Boolean,
63
+ default: false,
64
+ description: 'Use GJS/GTS templates by default for generated components, tests, and route templates',
65
+ },
60
66
  ],
61
67
 
62
68
  anonymousOptions: ['<app-name>'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "6.5.0-beta.0",
3
+ "version": "6.5.0-beta.2",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",
@@ -26,16 +26,13 @@
26
26
  "bin": {
27
27
  "ember": "./bin/ember"
28
28
  },
29
- "scripts": {
30
- "docs": "yuidoc",
31
- "lint": "eslint . --cache",
32
- "prepack": "pnpm docs",
33
- "mocha": "pnpm exec mocha --require ./tests/bootstrap.js tests/**/*-test.js",
34
- "test": "node --unhandled-rejections=strict tests/runner",
35
- "test:all": "node --unhandled-rejections=strict tests/runner all",
36
- "test:cover": "nyc --all --reporter=text --reporter=lcov node tests/runner all",
37
- "test:debug": "node --unhandled-rejections=strict debug tests/runner",
38
- "test:slow": "node --unhandled-rejections=strict tests/runner slow"
29
+ "release-plan": {
30
+ "semverIncrementAs": {
31
+ "minor": "prerelease",
32
+ "patch": "prerelease"
33
+ },
34
+ "semverIncrementTag": "beta",
35
+ "publishTag": "beta"
39
36
  },
40
37
  "dependencies": {
41
38
  "@pnpm/find-workspace-dir": "^1000.1.0",
@@ -144,7 +141,7 @@
144
141
  "nock": "^13.5.5",
145
142
  "nyc": "^15.1.0",
146
143
  "prettier": "2.8.7",
147
- "release-it": "^15.10.0",
144
+ "release-plan": "^0.17.0",
148
145
  "strip-ansi": "^6.0.0",
149
146
  "supertest": "^7.1.0",
150
147
  "testdouble": "^3.18.0",
@@ -157,22 +154,21 @@
157
154
  "engines": {
158
155
  "node": ">= 18"
159
156
  },
160
- "packageManager": "pnpm@9.15.0",
161
157
  "volta": {
162
- "pnpm": "9.15.0",
163
- "node": "18.12.0"
158
+ "node": "18.12.0",
159
+ "pnpm": "9.15.0"
164
160
  },
165
161
  "publishConfig": {
166
162
  "registry": "https://registry.npmjs.org"
167
163
  },
168
- "release-it": {
169
- "git": {
170
- "tagName": "v${version}"
171
- },
172
- "github": {
173
- "draft": true,
174
- "release": true,
175
- "tokenRef": "GITHUB_AUTH"
176
- }
164
+ "scripts": {
165
+ "docs": "yuidoc",
166
+ "lint": "eslint . --cache",
167
+ "mocha": "pnpm exec mocha --require ./tests/bootstrap.js tests/**/*-test.js",
168
+ "test": "node --unhandled-rejections=strict tests/runner",
169
+ "test:all": "node --unhandled-rejections=strict tests/runner all",
170
+ "test:cover": "nyc --all --reporter=text --reporter=lcov node tests/runner all",
171
+ "test:debug": "node --unhandled-rejections=strict debug tests/runner",
172
+ "test:slow": "node --unhandled-rejections=strict tests/runner slow"
177
173
  }
178
- }
174
+ }