grpcmkr-cli
Advanced tools
Comparing version 1.0.7 to 1.0.8
{ | ||
"name": "grpcmkr-cli", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Grpc CLI for developers", | ||
"scripts": { | ||
"test": "jest --config test/jest-config.json", | ||
"test:dev":"jest --config test/jest-config.json --watchAll", | ||
"coverage":"jest --config test/jest-config.json --coverage", | ||
"build": "tsc", | ||
"start": "node dist/bin/grpcmkr.js", | ||
"build:prod": "webpack" | ||
"webpack": "webpack --mode=production" | ||
}, | ||
@@ -11,0 +13,0 @@ "repository": { |
@@ -1,11 +0,15 @@ | ||
const path = require('path') | ||
const path = require('path'); | ||
module.exports = { | ||
mode: 'production', | ||
devtool: "inline-source-map", | ||
entry: './bin/grpcmkr.ts', | ||
target: 'node', | ||
entry: { | ||
index: './bin/grpcmkr.ts', | ||
}, | ||
output: { | ||
path: path.resolve(__dirname, './dist/bin'), | ||
filename: 'grpcmkr.js' | ||
filename: 'grpcmkr.js', | ||
library: 'grpcmkr-cli', | ||
libraryTarget: 'umd', | ||
globalObject: 'this', | ||
umdNamedDefine: true, | ||
}, | ||
@@ -20,3 +24,2 @@ resolve: { | ||
loader: 'ts-loader', | ||
exclude: /node_modules/, | ||
}, | ||
@@ -23,0 +26,0 @@ ], |
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
25032
534