@atlaspack/core 2.16.2-canary.81 → 2.16.2-canary.82

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.
@@ -703,8 +703,7 @@ class RequestGraph extends _graph().ContentGraph {
703
703
  //
704
704
  // Currently create events can invalidate a large number of nodes due to
705
705
  // "create above" invalidations.
706
- const isConfigKeyChange = (0, _featureFlags().getFeatureFlag)('granularTsConfigInvalidation') || type === 'delete' || type === 'update';
707
- if (configKeyNodes && isConfigKeyChange) {
706
+ if (configKeyNodes) {
708
707
  for (let nodeId of configKeyNodes) {
709
708
  let isInvalid = type === 'delete';
710
709
  if (type !== 'delete') {
@@ -28,13 +28,6 @@ function _utils() {
28
28
  }
29
29
  var _Environment = _interopRequireDefault(require("./Environment"));
30
30
  var _projectPath = require("../projectPath");
31
- function _featureFlags() {
32
- const data = require("@atlaspack/feature-flags");
33
- _featureFlags = function () {
34
- return data;
35
- };
36
- return data;
37
- }
38
31
  var _EnvironmentManager = require("../EnvironmentManager");
39
32
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
40
33
  const internalConfigToConfig = new (_utils().DefaultWeakMap)(() => new WeakMap());
@@ -284,7 +277,7 @@ class PublicConfig {
284
277
  return this.#pkg;
285
278
  }
286
279
  let pkgConfig = await this.getConfig(['package.json'], {
287
- readTracking: (0, _featureFlags().getFeatureFlag)('granularTsConfigInvalidation')
280
+ readTracking: true
288
281
  });
289
282
  if (!pkgConfig) {
290
283
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/core",
3
- "version": "2.16.2-canary.81+bb6785315",
3
+ "version": "2.16.2-canary.82+05012550d",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -21,21 +21,21 @@
21
21
  "check-ts": "tsc --noEmit index.d.ts"
22
22
  },
23
23
  "dependencies": {
24
- "@atlaspack/build-cache": "2.13.3-canary.149+bb6785315",
25
- "@atlaspack/cache": "3.1.1-canary.81+bb6785315",
26
- "@atlaspack/diagnostic": "2.14.1-canary.149+bb6785315",
27
- "@atlaspack/events": "2.14.1-canary.149+bb6785315",
28
- "@atlaspack/feature-flags": "2.14.1-canary.149+bb6785315",
29
- "@atlaspack/fs": "2.14.5-canary.81+bb6785315",
30
- "@atlaspack/graph": "3.4.1-canary.149+bb6785315",
31
- "@atlaspack/logger": "2.14.5-canary.81+bb6785315",
32
- "@atlaspack/package-manager": "2.14.5-canary.81+bb6785315",
33
- "@atlaspack/plugin": "2.14.5-canary.81+bb6785315",
34
- "@atlaspack/profiler": "2.14.1-canary.149+bb6785315",
35
- "@atlaspack/rust": "3.2.1-canary.81+bb6785315",
36
- "@atlaspack/types": "2.14.5-canary.81+bb6785315",
37
- "@atlaspack/utils": "2.14.5-canary.81+bb6785315",
38
- "@atlaspack/workers": "2.14.5-canary.81+bb6785315",
24
+ "@atlaspack/build-cache": "2.13.3-canary.150+05012550d",
25
+ "@atlaspack/cache": "3.1.1-canary.82+05012550d",
26
+ "@atlaspack/diagnostic": "2.14.1-canary.150+05012550d",
27
+ "@atlaspack/events": "2.14.1-canary.150+05012550d",
28
+ "@atlaspack/feature-flags": "2.14.1-canary.150+05012550d",
29
+ "@atlaspack/fs": "2.14.5-canary.82+05012550d",
30
+ "@atlaspack/graph": "3.4.1-canary.150+05012550d",
31
+ "@atlaspack/logger": "2.14.5-canary.82+05012550d",
32
+ "@atlaspack/package-manager": "2.14.5-canary.82+05012550d",
33
+ "@atlaspack/plugin": "2.14.5-canary.82+05012550d",
34
+ "@atlaspack/profiler": "2.14.1-canary.150+05012550d",
35
+ "@atlaspack/rust": "3.2.1-canary.82+05012550d",
36
+ "@atlaspack/types": "2.14.5-canary.82+05012550d",
37
+ "@atlaspack/utils": "2.14.5-canary.82+05012550d",
38
+ "@atlaspack/workers": "2.14.5-canary.82+05012550d",
39
39
  "@mischnic/json-sourcemap": "^0.1.0",
40
40
  "@parcel/source-map": "^2.1.1",
41
41
  "base-x": "^3.0.8",
@@ -71,5 +71,5 @@
71
71
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
72
72
  },
73
73
  "type": "commonjs",
74
- "gitHead": "bb6785315eea7df56b621d9e81cc106836c30d75"
74
+ "gitHead": "05012550da35b05ce7d356a8cc29311e7f9afdca"
75
75
  }
@@ -1123,11 +1123,7 @@ export class RequestGraph extends ContentGraph<
1123
1123
  //
1124
1124
  // Currently create events can invalidate a large number of nodes due to
1125
1125
  // "create above" invalidations.
1126
- const isConfigKeyChange =
1127
- getFeatureFlag('granularTsConfigInvalidation') ||
1128
- type === 'delete' ||
1129
- type === 'update';
1130
- if (configKeyNodes && isConfigKeyChange) {
1126
+ if (configKeyNodes) {
1131
1127
  for (let nodeId of configKeyNodes) {
1132
1128
  let isInvalid = type === 'delete';
1133
1129
 
@@ -20,7 +20,6 @@ import {
20
20
  } from '@atlaspack/utils';
21
21
  import Environment from './Environment';
22
22
  import {fromProjectPath, toProjectPath} from '../projectPath';
23
- import {getFeatureFlag} from '@atlaspack/feature-flags';
24
23
  import {fromEnvironmentId} from '../EnvironmentManager';
25
24
 
26
25
  const internalConfigToConfig: DefaultWeakMap<
@@ -362,7 +361,7 @@ export default class PublicConfig implements IConfig {
362
361
  }
363
362
 
364
363
  let pkgConfig = await this.getConfig<PackageJSON>(['package.json'], {
365
- readTracking: getFeatureFlag('granularTsConfigInvalidation'),
364
+ readTracking: true,
366
365
  });
367
366
  if (!pkgConfig) {
368
367
  return null;