@atlaspack/transformer-postcss 2.14.21-typescript-1fd1095e8.0 → 2.14.21-typescript-e99c742e9.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/lib/PostCSSTransformer.d.ts +3 -0
- package/lib/constants.d.ts +1 -0
- package/lib/loadConfig.d.ts +17 -0
- package/lib/loadPlugins.d.ts +4 -0
- package/package.json +11 -11
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const POSTCSS_RANGE = "^8.2.1";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { Config, FilePath, PluginOptions, PluginLogger } from '@atlaspack/types';
|
|
2
|
+
type ConfigResult = {
|
|
3
|
+
raw: any;
|
|
4
|
+
filePath: string;
|
|
5
|
+
hydrated: {
|
|
6
|
+
plugins: Array<any>;
|
|
7
|
+
from: FilePath;
|
|
8
|
+
to: FilePath;
|
|
9
|
+
modules: any;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare function load({ config, options, logger, }: {
|
|
13
|
+
config: Config;
|
|
14
|
+
options: PluginOptions;
|
|
15
|
+
logger: PluginLogger;
|
|
16
|
+
}): Promise<ConfigResult | null | undefined>;
|
|
17
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/transformer-postcss",
|
|
3
|
-
"version": "2.14.21-typescript-
|
|
3
|
+
"version": "2.14.21-typescript-e99c742e9.0",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -9,16 +9,17 @@
|
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/atlassian-labs/atlaspack.git"
|
|
11
11
|
},
|
|
12
|
-
"main": "lib/PostCSSTransformer.js",
|
|
13
|
-
"source": "src/PostCSSTransformer.ts",
|
|
12
|
+
"main": "./lib/PostCSSTransformer.js",
|
|
13
|
+
"source": "./src/PostCSSTransformer.ts",
|
|
14
|
+
"types": "./lib/PostCSSTransformer.d.ts",
|
|
14
15
|
"engines": {
|
|
15
16
|
"node": ">= 16.0.0"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
|
-
"@atlaspack/diagnostic": "2.14.2-typescript-
|
|
19
|
-
"@atlaspack/plugin": "2.14.21-typescript-
|
|
20
|
-
"@atlaspack/rust": "3.4.2-typescript-
|
|
21
|
-
"@atlaspack/utils": "2.17.3-typescript-
|
|
19
|
+
"@atlaspack/diagnostic": "2.14.2-typescript-e99c742e9.0",
|
|
20
|
+
"@atlaspack/plugin": "2.14.21-typescript-e99c742e9.0",
|
|
21
|
+
"@atlaspack/rust": "3.4.2-typescript-e99c742e9.0",
|
|
22
|
+
"@atlaspack/utils": "2.17.3-typescript-e99c742e9.0",
|
|
22
23
|
"clone": "^2.1.1",
|
|
23
24
|
"nullthrows": "^1.1.1",
|
|
24
25
|
"postcss-value-parser": "^4.2.0",
|
|
@@ -30,8 +31,7 @@
|
|
|
30
31
|
},
|
|
31
32
|
"type": "commonjs",
|
|
32
33
|
"scripts": {
|
|
33
|
-
"check-ts": "tsc --
|
|
34
|
+
"check-ts": "tsc --emitDeclarationOnly --rootDir src"
|
|
34
35
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
}
|
|
36
|
+
"gitHead": "e99c742e92175ac411d807daf2ba45d5bacebb58"
|
|
37
|
+
}
|