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" "vue": "^3.0.0"
}, },
"devDependencies": { "devDependencies": {
"@vant/cli": "^3.0.0-rc.0", "@vant/cli": "^3.0.0-rc.1",
"@vue/compiler-sfc": "^3.0.2", "@vue/compiler-sfc": "^3.0.2",
"vue": "^3.0.2" "vue": "^3.0.2"
}, },

View File

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

View File

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

View File

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

1111
yarn.lock

File diff suppressed because it is too large Load Diff