@ember-tooling/blueprint-model 0.3.0 → 0.4.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": "@ember-tooling/blueprint-model",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/ember-cli/ember-cli.git",
@@ -1,6 +1,15 @@
1
1
  'use strict';
2
2
 
3
3
  const chalk = require('chalk');
4
+
5
+ /*
6
+ If you're here to remove the VITE experiment flag in favor of it being
7
+ permanently on, you can't do that until addressing
8
+ https://github.com/ember-cli/ember-cli/pull/10781#pullrequestreview-3230644293
9
+
10
+ A lot of test coverage would otherwise be lost, because valid tests are being
11
+ run only when the VITE experiment is off.
12
+ */
4
13
  const availableExperiments = Object.freeze(['EMBROIDER', 'CLASSIC', 'VITE']);
5
14
 
6
15
  const deprecatedExperiments = Object.freeze([]);