@atlaspack/types-internal 2.14.1-dev.134 → 2.14.1-dev.138
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/lib/index.d.ts +1 -0
- package/package.json +4 -4
- package/src/index.js +1 -0
package/lib/index.d.ts
CHANGED
|
@@ -317,6 +317,7 @@ export type InitialServerOptions = {
|
|
|
317
317
|
export interface PluginOptions {
|
|
318
318
|
readonly mode: BuildMode;
|
|
319
319
|
readonly parcelVersion: string;
|
|
320
|
+
readonly isAtlaspackSuper?: boolean;
|
|
320
321
|
readonly env: EnvMap;
|
|
321
322
|
readonly hmrOptions: HMROptions | null | undefined;
|
|
322
323
|
readonly serveOptions: ServerOptions | false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/types-internal",
|
|
3
|
-
"version": "2.14.1-dev.
|
|
3
|
+
"version": "2.14.1-dev.138+7df3f2cee",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"check-ts": "tsc --noEmit lib/index.d.ts"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@atlaspack/diagnostic": "2.14.1-dev.
|
|
20
|
-
"@atlaspack/feature-flags": "2.14.1-dev.
|
|
19
|
+
"@atlaspack/diagnostic": "2.14.1-dev.138+7df3f2cee",
|
|
20
|
+
"@atlaspack/feature-flags": "2.14.1-dev.138+7df3f2cee",
|
|
21
21
|
"@parcel/source-map": "^2.1.1",
|
|
22
22
|
"utility-types": "^3.10.0"
|
|
23
23
|
},
|
|
24
24
|
"type": "commonjs",
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "7df3f2ceef899e67a62d99a53652584695291051"
|
|
26
26
|
}
|
package/src/index.js
CHANGED