Skip to content

Commit 9a2185b

Browse files
committed
build 0.0.25
1 parent 68a6506 commit 9a2185b

7 files changed

+25
-14
lines changed

.babelrc

+1-6
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@
33
[
44
"@babel/preset-env",
55
{
6-
"modules": false,
7-
"targets": { "node": "current" }
6+
"modules": false
87
}
98
]
109
],
1110
"plugins": [
12-
["@babel/plugin-transform-runtime"],
13-
"@babel/plugin-transform-regenerator",
14-
"@babel/plugin-transform-modules-commonjs",
1511
"@babel/plugin-proposal-class-properties",
1612
"@babel/plugin-syntax-dynamic-import",
1713
"transform-vue-jsx"
18-
1914
]
2015
}

.babelrc.for-test

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"modules": false,
7+
"targets": { "node": "current" }
8+
}
9+
]
10+
],
11+
"plugins": [
12+
["@babel/plugin-transform-runtime"],
13+
"@babel/plugin-transform-regenerator",
14+
"@babel/plugin-transform-modules-commonjs",
15+
"@babel/plugin-proposal-class-properties",
16+
"@babel/plugin-syntax-dynamic-import",
17+
"transform-vue-jsx"
18+
19+
]
20+
}

bin/webpack.config.devlib.js

-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ const config = {
6969
optimization: {
7070
minimizer: [
7171
new UglifyJsPlugin({
72-
cache: true,
73-
parallel: true,
7472
sourceMap: false
7573
}),
7674
new OptimizeCSSAssetsPlugin({})

bin/webpack.config.lib.js

-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ const config = {
6969
optimization: {
7070
minimizer: [
7171
new UglifyJsPlugin({
72-
cache: true,
73-
parallel: true,
7472
sourceMap: false
7573
}),
7674
new OptimizeCSSAssetsPlugin({})

lib/vue-rt-style.css

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

lib/vue-rt-style.js

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-rt-style",
3-
"version": "0.0.24",
3+
"version": "0.0.25",
44
"description": "",
55
"main": "lib/vue-rt-style.js",
66
"scripts": {

0 commit comments

Comments
 (0)