@atlaspack/types-internal 2.17.0 → 2.18.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @atlaspack/types-internal
2
2
 
3
+ ## 2.18.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#731](https://github.com/atlassian-labs/atlaspack/pull/731) [`23d561e`](https://github.com/atlassian-labs/atlaspack/commit/23d561e51e68b0c38fd1ff4e4fb173e5e7b01cf2) Thanks [@marcins](https://github.com/marcins)! - Implement "inline isolated" scripts
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`23d561e`](https://github.com/atlassian-labs/atlaspack/commit/23d561e51e68b0c38fd1ff4e4fb173e5e7b01cf2)]:
12
+ - @atlaspack/feature-flags@2.21.0
13
+
3
14
  ## 2.17.0
4
15
 
5
16
  ### Minor Changes
package/lib/index.d.ts CHANGED
@@ -581,7 +581,7 @@ export type ASTGenerator = {
581
581
  type: string;
582
582
  version: Semver;
583
583
  };
584
- export type BundleBehavior = 'inline' | 'isolated';
584
+ export type BundleBehavior = 'inline' | 'isolated' | 'inlineIsolated';
585
585
  export type AtlaspackTransformOptions = {
586
586
  filePath: FilePath;
587
587
  code?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/types-internal",
3
- "version": "2.17.0",
3
+ "version": "2.18.0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "main": "./lib/index.js",
6
6
  "source": "./src/index.ts",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "dependencies": {
19
19
  "@atlaspack/diagnostic": "2.14.2",
20
- "@atlaspack/feature-flags": "2.20.1",
20
+ "@atlaspack/feature-flags": "2.21.0",
21
21
  "@parcel/source-map": "^2.1.1",
22
22
  "utility-types": "^3.10.0"
23
23
  },
package/src/index.ts CHANGED
@@ -749,7 +749,7 @@ export type ASTGenerator = {
749
749
  version: Semver;
750
750
  };
751
751
 
752
- export type BundleBehavior = 'inline' | 'isolated';
752
+ export type BundleBehavior = 'inline' | 'isolated' | 'inlineIsolated';
753
753
 
754
754
  export type AtlaspackTransformOptions = {
755
755
  filePath: FilePath;