@atlaspack/plugin 2.14.23 → 2.14.24
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,12 @@
|
|
|
1
1
|
# @atlaspack/plugin
|
|
2
2
|
|
|
3
|
+
## 2.14.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7f5841c`](https://github.com/atlassian-labs/atlaspack/commit/7f5841c39df049f9546cccbeea2a7337e0337b45)]:
|
|
8
|
+
- @atlaspack/types-internal@2.19.0
|
|
9
|
+
|
|
3
10
|
## 2.14.23
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Transformer as TransformerOpts, Resolver as ResolverOpts, Bundler as BundlerOpts, Namer as NamerOpts, Runtime as RuntimeOpts, Packager as PackagerOpts, Optimizer as OptimizerOpts, Compressor as CompressorOpts, Reporter as ReporterOpts, Validator as ValidatorOpts } from '@atlaspack/types';
|
|
1
|
+
import type { Transformer as TransformerOpts, Resolver as ResolverOpts, Bundler as BundlerOpts, Namer as NamerOpts, Runtime as RuntimeOpts, Packager as PackagerOpts, Optimizer as OptimizerOpts, Compressor as CompressorOpts, Reporter as ReporterOpts, Validator as ValidatorOpts } from '@atlaspack/types-internal';
|
|
2
2
|
declare const CONFIG: unique symbol;
|
|
3
3
|
export declare class Transformer<T = unknown> {
|
|
4
4
|
[CONFIG]: TransformerOpts<T>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/plugin",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.24",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,14 +12,15 @@
|
|
|
12
12
|
},
|
|
13
13
|
"main": "./lib/PluginAPI.js",
|
|
14
14
|
"source": "./src/PluginAPI.ts",
|
|
15
|
-
"types": "./lib/PluginAPI.d.ts",
|
|
15
|
+
"types": "./lib/types/PluginAPI.d.ts",
|
|
16
16
|
"engines": {
|
|
17
17
|
"node": ">= 16.0.0"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
|
-
"check-ts": "tsc --emitDeclarationOnly --rootDir src"
|
|
20
|
+
"check-ts": "tsc --emitDeclarationOnly --rootDir src",
|
|
21
|
+
"build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
|
-
"@atlaspack/types": "2.
|
|
24
|
+
"@atlaspack/types-internal": "2.19.0"
|
|
24
25
|
}
|
|
25
|
-
}
|
|
26
|
+
}
|
package/src/PluginAPI.ts
CHANGED
|
@@ -9,7 +9,7 @@ import type {
|
|
|
9
9
|
Compressor as CompressorOpts,
|
|
10
10
|
Reporter as ReporterOpts,
|
|
11
11
|
Validator as ValidatorOpts,
|
|
12
|
-
} from '@atlaspack/types';
|
|
12
|
+
} from '@atlaspack/types-internal';
|
|
13
13
|
|
|
14
14
|
// This uses the `parcel-plugin-config` symbol so it's backwards compatible with
|
|
15
15
|
// parcel plugins.
|