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

rollup-plugin-svelte

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-svelte - npm Package Compare versions

Comparing version 1.6.0 to 1.6.1

4

CHANGELOG.md
# rollup-plugin-svelte changelog
## 1.6.1
* Capitalize component names correctly
## 1.6.0

@@ -4,0 +8,0 @@

2

dist/rollup-plugin-svelte.cjs.js

@@ -17,3 +17,3 @@ 'use strict';

function capitalize ( str ) {
return str[0] + str.slice( 1 );
return str[0].toUpperCase() + str.slice( 1 );
}

@@ -20,0 +20,0 @@

@@ -15,3 +15,3 @@ import { basename, extname } from 'path';

function capitalize ( str ) {
return str[0] + str.slice( 1 );
return str[0].toUpperCase() + str.slice( 1 );
}

@@ -18,0 +18,0 @@

{
"name": "rollup-plugin-svelte",
"version": "1.6.0",
"version": "1.6.1",
"description": "Compile Svelte components with Rollup",

@@ -20,6 +20,3 @@ "main": "dist/rollup-plugin-svelte.cjs.js",

},
"repository": {
"type": "git",
"url": "https://github.com/rollup/rollup-plugin-svelte.git"
},
"repository": "rollup/rollup-plugin-svelte",
"keywords": [

@@ -38,9 +35,9 @@ "svelte",

"mocha": "^3.1.2",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0"
"rollup": "^0.41.5",
"rollup-plugin-buble": "^0.15.0"
},
"dependencies": {
"rollup-pluginutils": "^1.5.2",
"svelte": "^1.6.0"
"rollup-pluginutils": "^2.0.1",
"svelte": "^1.11.2"
}
}
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