@salty-css/next 0.1.0-alpha.3 → 0.1.0-alpha.4
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/index.d.ts +4 -3
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type NextWebpackFNLike = (config: any, options: any) => any;
|
|
2
|
-
|
|
2
|
+
type AnyRecord = Record<string, unknown>;
|
|
3
|
+
type NextConfigLikeResult = {
|
|
3
4
|
webpack?: null | undefined | NextWebpackFNLike;
|
|
4
|
-
}
|
|
5
|
-
export declare const withSaltyCss: <T extends
|
|
5
|
+
};
|
|
6
|
+
export declare const withSaltyCss: <T extends AnyRecord & NextConfigLikeResult>(nextConfig: T) => T & NextConfigLikeResult;
|
|
6
7
|
export default withSaltyCss;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salty-css/next",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.4",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"typings": "./dist/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@salty-css/core": "^0.1.0-alpha.
|
|
38
|
-
"@salty-css/webpack": "^0.1.0-alpha.
|
|
37
|
+
"@salty-css/core": "^0.1.0-alpha.4",
|
|
38
|
+
"@salty-css/webpack": "^0.1.0-alpha.4"
|
|
39
39
|
}
|
|
40
40
|
}
|