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

types-webpack-bundler

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

types-webpack-bundler - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

4

package.json
{
"name": "types-webpack-bundler",
"version": "1.0.1",
"version": "1.0.2",
"description": "This library takes separate declaration asset files generated by the webpack build process and bundles them into one single declaration file. However it does so by recomposing the separate declarations as if all the classes and interfaces were defined as an __internal module__. Therefor, using this plugin only makes sense if you expose the classes and interfaces to the global module space yourself.",

@@ -8,3 +8,3 @@ "main": "plugin.js",

"build": "tsc",
"postversion": "git push --tags && yarn publish . --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
},

@@ -11,0 +11,0 @@ "author": "Royson <roysondsilva@gmail.com>",

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

if (options === void 0) { options = {}; }
this.out = options.out ? options.out : './build/';
this.out = options.out ? options.out : './build/index.d.ts';
this.excludedReferences = options.excludedReferences ? options.excludedReferences : undefined;

@@ -8,0 +8,0 @@ if (!options.moduleName) {

@@ -10,3 +10,3 @@ import * as webpack from 'webpack'

constructor(options: any = {}) {
this.out = options.out ? options.out : './build/';
this.out = options.out ? options.out : './build/index.d.ts';
this.excludedReferences = options.excludedReferences ? options.excludedReferences : undefined;

@@ -13,0 +13,0 @@

@@ -74,3 +74,3 @@ # Note

var DeclarationBundlerPlugin = require('declaration-bundler-webpack-plugin');
var DeclarationBundlerPlugin = require('types-webpack-bundler');
module.exports = {

@@ -77,0 +77,0 @@ entry: './src/init.ts',

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