Socket
Socket
Sign inDemoInstall

@types/webpack

Package Overview
Dependencies
Maintainers
1
Versions
184
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/webpack - npm Package Compare versions

Comparing version 2.2.11 to 2.2.12

75

webpack/index.d.ts

@@ -692,2 +692,77 @@ // Type definitions for webpack 2.2

class DllPlugin extends Plugin {
constructor(options: DllPlugin.Options | DllPlugin.Options[]);
}
namespace DllPlugin {
interface Options {
/**
* The context of requests in the manifest file.
*
* Defaults to the webpack context.
*/
context?: string;
/**
* The name of the exposed DLL function (keep consistent with `output.library`).
*/
name: string;
/**
* The absolute path to the manifest json file (output).
*/
path: string;
}
}
class DllReferencePlugin extends Plugin {
constructor(options: DllReferencePlugin.Options);
}
namespace DllReferencePlugin {
interface Options {
/**
* The mappings from the request to module ID.
*
* Defaults to `manifest.content`.
*/
content?: any;
/**
* The context of requests in the manifest (or content property).
*
* This is an <b>absolute path</b>.
*/
context: string;
/**
* An object containing `content` and `name`.
*/
manifest: { content: string, name: string };
/**
* The name where the DLL is exposed.
*
* Defaults to `manifest.name`.
*
* See also `externals`.
*/
name?: string;
/**
* The prefix which is used for accessing the content of the DLL.
*/
scope?: string;
/**
* The type how the DLL is exposed.
*
* Defaults to `"var"`.
*
* See also `externals`.
*/
sourceType?: string;
}
}
class EvalSourceMapDevToolPlugin extends Plugin {

@@ -694,0 +769,0 @@ constructor(options?: false | string | EvalSourceMapDevToolPlugin.Options);

4

webpack/package.json
{
"name": "@types/webpack",
"version": "2.2.11",
"version": "2.2.12",
"description": "TypeScript definitions for webpack",

@@ -40,4 +40,4 @@ "license": "MIT",

"peerDependencies": {},
"typesPublisherContentHash": "6a313fb29411ddcc51de213482f80825a8a81dadfe669c2d7147d7a2d901e832",
"typesPublisherContentHash": "1ad3d47cb250fa2b6577dfc4d8e4b863a008a7e892204396cfece295021c0e33",
"typeScriptVersion": "2.0"
}

@@ -11,3 +11,3 @@ # Installation

Additional Details
* Last updated: Fri, 10 Mar 2017 07:28:34 GMT
* Last updated: Tue, 21 Mar 2017 21:28:55 GMT
* Dependencies: tapable, uglify-js, node

@@ -14,0 +14,0 @@ * Global values: none

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