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

@wessberg/rollup-plugin-ts

Package Overview
Dependencies
Maintainers
1
Versions
185
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wessberg/rollup-plugin-ts - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

9

CHANGELOG.md

@@ -0,1 +1,10 @@

<a name="0.0.9"></a>
## <small>0.0.9 (2018-04-18)</small>
* 0.0.9 ([b3c7e15](https://github.com/wessberg/rollup-plugin-ts/commit/b3c7e15))
* Bumped dependencies ([a31c0ae](https://github.com/wessberg/rollup-plugin-ts/commit/a31c0ae))
* Bumped version ([16c3320](https://github.com/wessberg/rollup-plugin-ts/commit/16c3320))
<a name="0.0.8"></a>

@@ -2,0 +11,0 @@ ## <small>0.0.8 (2018-04-04)</small>

2

dist/cjs/helpers.js

@@ -160,3 +160,3 @@ "use strict";

// Normalize the main entry
const normalizedInput = Array.isArray(inputOptions.input) ? inputOptions.input : [inputOptions.input];
const normalizedInput = Array.isArray(inputOptions.input) ? inputOptions.input : typeof inputOptions.input === "string" ? [inputOptions.input] : Object.values(inputOptions.input);
return normalizedInput.some(path => ensureRelative(root, fileName) === ensureRelative(root, path));

@@ -163,0 +163,0 @@ }

@@ -151,5 +151,5 @@ import chalk from "chalk";

// Normalize the main entry
const normalizedInput = Array.isArray(inputOptions.input) ? inputOptions.input : [inputOptions.input];
const normalizedInput = Array.isArray(inputOptions.input) ? inputOptions.input : typeof inputOptions.input === "string" ? [inputOptions.input] : Object.values(inputOptions.input);
return normalizedInput.some(path => ensureRelative(root, fileName) === ensureRelative(root, path));
}
//# sourceMappingURL=helpers.js.map
{
"name": "@wessberg/rollup-plugin-ts",
"version": "0.0.8",
"version": "0.0.9",
"description": "A Rollup plugin for Typescript",

@@ -40,4 +40,4 @@ "scripts": {

"devDependencies": {
"@wessberg/ts-config": "^0.0.26",
"conventional-changelog-cli": "^1.3.21",
"@wessberg/ts-config": "^0.0.27",
"conventional-changelog-cli": "^1.3.22",
"husky": "latest",

@@ -48,5 +48,5 @@ "tslint": "^5.9.1",

"dependencies": {
"@types/node": "^9.6.2",
"chalk": "^2.3.2",
"rollup": "^0.57.1",
"@types/node": "^9.6.5",
"chalk": "^2.4.0",
"rollup": "^0.58.1",
"rollup-pluginutils": "^2.0.1",

@@ -53,0 +53,0 @@ "tslib": "^1.9.0"

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