vue-sfc-rollup
Advanced tools
Comparing version 2.3.0 to 2.3.1
@@ -7,2 +7,12 @@ # Changelog | ||
## [2.3.1] - 2020-01-24 | ||
### Changed | ||
- Removed babel plugin dependencies that are now in babel core | ||
- **REMOVED** @babel/plugin-proposal-optional-chaining | ||
- **REMOVED** @babel/plugin-proposal-nullish-coalescing-operator | ||
### Fixed | ||
- Changed order of rollup plugins (@rollup/plugin-commonjs) in templates to prevent failed build when using some babel features (optional chaining/nullish coalescing) | ||
## [2.3.0] - 2020-01-15 | ||
@@ -9,0 +19,0 @@ |
@@ -6,3 +6,3 @@ { | ||
"license": "ISC", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"bin": { | ||
@@ -9,0 +9,0 @@ "sfc-init": "./sfc-init.js" |
@@ -8,6 +8,2 @@ module.exports = { | ||
], | ||
plugins: [ | ||
'@babel/plugin-proposal-optional-chaining', | ||
'@babel/plugin-proposal-nullish-coalescing-operator', | ||
], | ||
}; |
@@ -29,3 +29,2 @@ // rollup.config.js | ||
}), | ||
commonjs(), | ||
alias({ | ||
@@ -92,2 +91,3 @@ resolve: ['.js', '.jsx', '.ts', '.tsx', '.vue'], | ||
}), | ||
commonjs(), | ||
], | ||
@@ -120,2 +120,3 @@ }; | ||
babel(baseConfig.plugins.babel), | ||
commonjs(), | ||
], | ||
@@ -142,2 +143,3 @@ }; | ||
babel(baseConfig.plugins.babel), | ||
commonjs(), | ||
terser({ | ||
@@ -144,0 +146,0 @@ output: { |
@@ -36,4 +36,2 @@ { | ||
"@babel/core": "^7.7.7", | ||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4", | ||
"@babel/plugin-proposal-optional-chaining": "^7.7.5", | ||
"@babel/preset-env": "^7.7.7", | ||
@@ -40,0 +38,0 @@ <% if (ts) { -%> |
@@ -8,6 +8,2 @@ module.exports = { | ||
], | ||
plugins: [ | ||
'@babel/plugin-proposal-optional-chaining', | ||
'@babel/plugin-proposal-nullish-coalescing-operator', | ||
], | ||
}; |
@@ -29,3 +29,2 @@ // rollup.config.js | ||
}), | ||
commonjs(), | ||
alias({ | ||
@@ -92,2 +91,3 @@ resolve: ['.js', '.jsx', '.ts', '.tsx', '.vue'], | ||
}), | ||
commonjs(), | ||
], | ||
@@ -120,2 +120,3 @@ }; | ||
babel(baseConfig.plugins.babel), | ||
commonjs(), | ||
], | ||
@@ -142,2 +143,3 @@ }; | ||
babel(baseConfig.plugins.babel), | ||
commonjs(), | ||
terser({ | ||
@@ -144,0 +146,0 @@ output: { |
@@ -36,4 +36,2 @@ { | ||
"@babel/core": "^7.7.7", | ||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4", | ||
"@babel/plugin-proposal-optional-chaining": "^7.7.5", | ||
"@babel/preset-env": "^7.7.7", | ||
@@ -40,0 +38,0 @@ <% if (ts) { -%> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46204
845