Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-sfc-rollup

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-sfc-rollup - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

10

CHANGELOG.md

@@ -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 @@

2

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc