fix(cli): postcss loader option changed

This commit is contained in:
chenjiahan 2020-11-21 22:20:16 +08:00
parent a46ba22943
commit 7e7484a5cb
5 changed files with 100 additions and 1025 deletions

View File

@ -67,7 +67,7 @@
"vue": "^3.0.0"
},
"devDependencies": {
"@vant/cli": "^3.0.0-rc.0",
"@vant/cli": "^3.0.0-rc.1",
"@vue/compiler-sfc": "^3.0.2",
"vue": "^3.0.2"
},

View File

@ -33,8 +33,6 @@
"vue": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/webpack-dev-server": "^3.11.1",
"@types/fs-extra": "^9.0.4",
"@types/lodash": "^4.14.165",
"@types/postcss-load-config": "^2.0.1"
@ -46,6 +44,8 @@
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@nuxt/friendly-errors-webpack-plugin": "^2.5.0",
"@types/jest": "^26.0.15",
"@types/webpack-dev-server": "^3.11.1",
"@vant/eslint-config": "^3.0.0",
"@vant/markdown-loader": "^3.0.1",
"@vant/markdown-vetur": "^2.0.2",

View File

@ -19,9 +19,7 @@ const CSS_LOADERS = [
{
loader: 'postcss-loader',
options: {
config: {
path: POSTCSS_CONFIG_FILE,
},
postcssOptions: require(POSTCSS_CONFIG_FILE),
},
},
];

View File

@ -38,10 +38,10 @@ export function mockScrollIntoView() {
export function mockGetBoundingClientRect(
rect: ClientRect | DOMRect
): Function {
): () => void {
const originMethod = Element.prototype.getBoundingClientRect;
Element.prototype.getBoundingClientRect = <any>jest.fn(() => rect);
Element.prototype.getBoundingClientRect = jest.fn(() => rect);
return function () {
Element.prototype.getBoundingClientRect = originMethod;

1111
yarn.lock

File diff suppressed because it is too large Load Diff