@atlaspack/bundler-default 3.3.0 → 3.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @atlaspack/bundler-default
2
2
 
3
+ ## 3.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`f6b3f22`](https://github.com/atlassian-labs/atlaspack/commit/f6b3f2276c7e417580b49c4879563aab51f156b1)]:
8
+ - @atlaspack/feature-flags@2.23.0
9
+ - @atlaspack/graph@3.5.14
10
+ - @atlaspack/types-internal@2.19.1
11
+ - @atlaspack/utils@2.18.2
12
+ - @atlaspack/plugin@2.14.25
13
+
14
+ ## 3.3.1
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [[`ad26146`](https://github.com/atlassian-labs/atlaspack/commit/ad26146f13b4c1cc65d4a0f9c67060b90ef14ff3), [`f1b48e7`](https://github.com/atlassian-labs/atlaspack/commit/f1b48e7a04e005cef0f36a3e692087a9ecdb6f7a), [`7f5841c`](https://github.com/atlassian-labs/atlaspack/commit/7f5841c39df049f9546cccbeea2a7337e0337b45), [`73dd7ba`](https://github.com/atlassian-labs/atlaspack/commit/73dd7baab69456ef2f6e4a0cc7dbb04f407eb148)]:
19
+ - @atlaspack/rust@3.6.0
20
+ - @atlaspack/types-internal@2.19.0
21
+ - @atlaspack/feature-flags@2.22.0
22
+ - @atlaspack/utils@2.18.1
23
+ - @atlaspack/graph@3.5.13
24
+ - @atlaspack/plugin@2.14.24
25
+
3
26
  ## 3.3.0
4
27
 
5
28
  ### Minor Changes
@@ -1,2 +1,2 @@
1
- import type { Asset, Dependency, MutableBundleGraph } from '@atlaspack/types';
1
+ import type { Asset, Dependency, MutableBundleGraph } from '@atlaspack/types-internal';
2
2
  export declare function addJSMonolithBundle(bundleGraph: MutableBundleGraph, entryAsset: Asset, entryDep: Dependency): void;
@@ -1,4 +1,4 @@
1
- import type { Config, PluginOptions, PluginLogger } from '@atlaspack/types';
1
+ import type { Config, PluginOptions, PluginLogger } from '@atlaspack/types-internal';
2
2
  type Glob = string;
3
3
  type ManualSharedBundles = Array<{
4
4
  name: string;
@@ -1,3 +1,3 @@
1
- import type { MutableBundleGraph } from '@atlaspack/types';
1
+ import type { MutableBundleGraph } from '@atlaspack/types-internal';
2
2
  import type { IdealGraph } from './idealGraph';
3
3
  export declare function decorateLegacyGraph(idealGraph: IdealGraph, bundleGraph: MutableBundleGraph): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/bundler-default",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
@@ -12,21 +12,23 @@
12
12
  },
13
13
  "main": "./lib/DefaultBundler.js",
14
14
  "source": "./src/DefaultBundler.ts",
15
- "types": "./lib/DefaultBundler.d.ts",
15
+ "types": "./lib/types/DefaultBundler.d.ts",
16
16
  "engines": {
17
17
  "node": ">= 16.0.0"
18
18
  },
19
19
  "dependencies": {
20
+ "@atlaspack/types-internal": "2.19.1",
20
21
  "@atlaspack/diagnostic": "2.14.2",
21
- "@atlaspack/feature-flags": "2.21.0",
22
- "@atlaspack/graph": "3.5.12",
23
- "@atlaspack/plugin": "2.14.23",
24
- "@atlaspack/rust": "3.5.0",
25
- "@atlaspack/utils": "2.18.0",
22
+ "@atlaspack/feature-flags": "2.23.0",
23
+ "@atlaspack/graph": "3.5.14",
24
+ "@atlaspack/plugin": "2.14.25",
25
+ "@atlaspack/rust": "3.6.0",
26
+ "@atlaspack/utils": "2.18.2",
26
27
  "nullthrows": "^1.1.1",
27
28
  "many-keys-map": "^1.0.3"
28
29
  },
29
30
  "scripts": {
30
- "check-ts": "tsc --emitDeclarationOnly --rootDir src"
31
+ "check-ts": "tsc --emitDeclarationOnly --rootDir src",
32
+ "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
31
33
  }
32
- }
34
+ }
@@ -1,4 +1,8 @@
1
- import type {Asset, Dependency, MutableBundleGraph} from '@atlaspack/types';
1
+ import type {
2
+ Asset,
3
+ Dependency,
4
+ MutableBundleGraph,
5
+ } from '@atlaspack/types-internal';
2
6
  import nullthrows from 'nullthrows';
3
7
 
4
8
  export function addJSMonolithBundle(
@@ -4,7 +4,7 @@ import type {
4
4
  PluginOptions,
5
5
  BuildMode,
6
6
  PluginLogger,
7
- } from '@atlaspack/types';
7
+ } from '@atlaspack/types-internal';
8
8
  import {getFeatureFlag} from '@atlaspack/feature-flags';
9
9
  import {SchemaEntity, validateSchema} from '@atlaspack/utils';
10
10
  import invariant from 'assert';
@@ -3,7 +3,7 @@ import type {
3
3
  Bundle as LegacyBundle,
4
4
  BundleGroup,
5
5
  MutableBundleGraph,
6
- } from '@atlaspack/types';
6
+ } from '@atlaspack/types-internal';
7
7
  import {getFeatureFlag} from '@atlaspack/feature-flags';
8
8
  import invariant from 'assert';
9
9
  import nullthrows from 'nullthrows';
File without changes
File without changes