Skip to content

Commit 9f11dd6

Browse files
committed
feat(Deps): Upgrade postcss to 8.4.38 and update import accordingly
1 parent 31e5ecb commit 9f11dd6

File tree

3 files changed

+72
-25
lines changed

3 files changed

+72
-25
lines changed

Diff for: package-lock.json

+69-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"dependencies": {
3131
"autoprefixer": "^8.4.1",
3232
"css": "^2.2.1",
33-
"postcss": "^7.0.39",
33+
"postcss": "^8.4.38",
3434
"postcss-js": "^1.0.1",
3535
"react": "^16.3.2",
3636
"react-dom": "^16.3.2",

Diff for: src/reverse.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import postcss from "postcss";
1+
import { default as postcss } from "postcss";
22
// noinspection TypeScriptCheckImport
33
import postcssJs from "postcss-js";
44
import autoprefixer from "autoprefixer";
@@ -12,4 +12,4 @@ export function promiseReverse(inputReactObjText) {
1212

1313
function promiseParseJson(inputReactObjText) {
1414
return new Promise(resolve => resolve(JSON.parse(inputReactObjText)));
15-
}
15+
}

0 commit comments

Comments
 (0)