mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: use vant cli commands
This commit is contained in:
parent
aaa453730d
commit
12b3c3c8d0
@ -1,38 +1,3 @@
|
|||||||
module.exports = function (api) {
|
module.exports = {
|
||||||
const { BABEL_MODULE, NODE_ENV } = process.env;
|
presets: ['@vant/cli/preset']
|
||||||
const useESModules = BABEL_MODULE !== 'commonjs' && NODE_ENV !== 'test';
|
|
||||||
|
|
||||||
api && api.cache(false);
|
|
||||||
|
|
||||||
return {
|
|
||||||
presets: [
|
|
||||||
[
|
|
||||||
'@babel/preset-env',
|
|
||||||
{
|
|
||||||
loose: true,
|
|
||||||
modules: useESModules ? false : 'commonjs'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'@vue/babel-preset-jsx',
|
|
||||||
{
|
|
||||||
functional: false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'@babel/preset-typescript'
|
|
||||||
],
|
|
||||||
plugins: [
|
|
||||||
[
|
|
||||||
'@babel/plugin-transform-runtime',
|
|
||||||
{
|
|
||||||
corejs: false,
|
|
||||||
helpers: true,
|
|
||||||
regenerator: NODE_ENV === 'test',
|
|
||||||
useESModules
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'@babel/plugin-transform-object-assign',
|
|
||||||
'@babel/plugin-proposal-optional-chaining'
|
|
||||||
]
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
@ -15,13 +15,12 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"bootstrap": "yarn || npm i",
|
"bootstrap": "yarn || npm i",
|
||||||
"dev": "npm run build:entry && webpack-dev-server --config build/webpack.site.dev.js",
|
"dev": "npm run build:entry && webpack-dev-server --config build/webpack.site.dev.js",
|
||||||
"lint": "eslint ./src --ext .js,.vue,.ts,.tsx && stylelint \"src/**/*.less\" --fix",
|
"lint": "vant-cli lint",
|
||||||
"build:entry": "node build/build-entry.js",
|
"build:entry": "node build/build-entry.js",
|
||||||
"build:changelog": "vant changelog ./docs/markdown/changelog.generated.md --tag v2.1.0",
|
"build:changelog": "vant-cli changelog ./docs/markdown/changelog.generated.md --tag v2.2.0",
|
||||||
"build:lib": "node build/build-lib.js",
|
"build:lib": "node build/build-lib.js",
|
||||||
"test": "jest",
|
"test": "vant-cli test",
|
||||||
"test:watch": "jest --watch",
|
"test:watch": "vant-cli test --watch",
|
||||||
"test:clear-cache": "jest --clearCache",
|
|
||||||
"test:coverage": "open test/coverage/index.html",
|
"test:coverage": "open test/coverage/index.html",
|
||||||
"release": "sh build/release.sh",
|
"release": "sh build/release.sh",
|
||||||
"release:site": "sh build/release-site.sh"
|
"release:site": "sh build/release-site.sh"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
const babelConfig = require('../babel.config');
|
const babelConfig = require('../babel.config');
|
||||||
|
|
||||||
module.exports = require('babel-jest').createTransformer(babelConfig());
|
module.exports = require('babel-jest').createTransformer(babelConfig);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user