Socket
Socket
Sign inDemoInstall

rollup-plugin-dts

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-dts - npm Package Compare versions

Comparing version 1.1.6 to 1.1.7

4

CHANGELOG.md

@@ -0,1 +1,5 @@

### 1.1.7 2019-09-09
- make it compatible with `rollup@1.21`
### 1.1.6 2019-07-31

@@ -2,0 +6,0 @@

7

dist/rollup-plugin-dts.js

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

dirName,
compilerOptions: Object.assign({}, options, OPTIONS_OVERRIDE),
compilerOptions: Object.assign(Object.assign({}, options), OPTIONS_OVERRIDE),
};

@@ -1127,9 +1127,10 @@ }

programs = createPrograms(input);
return Object.assign({}, options, { treeshake: {
return Object.assign(Object.assign({}, options), { treeshake: {
moduleSideEffects: "no-external",
propertyReadSideEffects: true,
unknownGlobalSideEffects: false,
} });
},
outputOptions(options) {
return Object.assign({}, options, { chunkFileNames: options.chunkFileNames || "[name]-[hash]" + dts, entryFileNames: options.entryFileNames || "[name]" + dts, format: "es", exports: "named", compact: false, freeze: true, interop: false, namespaceToStringTag: false, strict: false });
return Object.assign(Object.assign({}, options), { chunkFileNames: options.chunkFileNames || "[name]-[hash]" + dts, entryFileNames: options.entryFileNames || "[name]" + dts, format: "es", exports: "named", compact: false, freeze: true, interop: false, namespaceToStringTag: false, strict: false });
},

@@ -1136,0 +1137,0 @@ load(id) {

{
"name": "rollup-plugin-dts",
"version": "1.1.6",
"version": "1.1.7",
"description": "An experiment to generate .d.ts rollup files",

@@ -62,17 +62,17 @@ "keywords": [

"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/react": "^16.9.2",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"jest": "^24.8.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"rollup": "^1.17.0",
"react": "^16.9.0",
"rollup": "1.21.0",
"ts-jest": "^24.0.2",
"typescript": "3.5.3"
"typescript": "3.6.2"
},
"peerDependencies": {
"rollup": "^1.17.0",
"typescript": "^3.5.3"
"rollup": "^1.21.0",
"typescript": "^3.6.2"
},

@@ -79,0 +79,0 @@ "optionalDependencies": {

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