@ember-tooling/classic-build-addon-blueprint 6.9.0-alpha.1 → 6.9.0-beta.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +6 -5
package/index.js CHANGED
@@ -134,7 +134,7 @@ module.exports = {
134
134
  * _ts_eslint.config.mjs is renamed to eslint.config.mjs
135
135
  */
136
136
  buildFileInfo(intoDir, templateVariables, file, commandOptions) {
137
- if (file.startsWith('_js_') || file.startsWith('_ts_')) {
137
+ if (file.includes('_js_') || file.includes('_ts_')) {
138
138
  let fileInfo = this._super.buildFileInfo.apply(this, arguments);
139
139
 
140
140
  if (file.includes('_js_')) {
package/package.json CHANGED
@@ -1,15 +1,17 @@
1
1
  {
2
2
  "name": "@ember-tooling/classic-build-addon-blueprint",
3
- "version": "6.9.0-alpha.1",
3
+ "version": "6.9.0-beta.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/ember-cli/ember-cli.git",
7
7
  "directory": "packages/addon-blueprint"
8
8
  },
9
+ "license": "MIT",
9
10
  "keywords": [
10
11
  "ember-blueprint"
11
12
  ],
12
13
  "dependencies": {
14
+ "@ember-tooling/blueprint-model": "^0.4.1",
13
15
  "chalk": "^4.1.2",
14
16
  "ember-cli-normalize-entity-name": "^1.0.0",
15
17
  "ember-cli-string-utils": "^1.1.0",
@@ -17,15 +19,14 @@
17
19
  "lodash": "^4.17.21",
18
20
  "silent-error": "^1.1.1",
19
21
  "sort-package-json": "^2.12.0",
20
- "walk-sync": "^3.0.0",
21
- "@ember-tooling/blueprint-model": "0.4.0"
22
+ "walk-sync": "^3.0.0"
22
23
  },
23
24
  "release-plan": {
24
25
  "semverIncrementAs": {
25
26
  "minor": "prerelease",
26
27
  "patch": "prerelease"
27
28
  },
28
- "semverIncrementTag": "alpha",
29
- "publishTag": "alpha"
29
+ "semverIncrementTag": "beta",
30
+ "publishTag": "beta"
30
31
  }
31
32
  }