types-webpack-bundler
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"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', |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13193