Socket
Socket
Sign inDemoInstall

@evroca/jw-react-npm-boilerplate

Package Overview
Dependencies
6
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.5 to 1.1.2

lib/main.js

4

package.json
{
"name": "@evroca/jw-react-npm-boilerplate",
"version": "1.0.5",
"version": "1.1.2",
"description": "React Boilerplate Component for npm",
"main": "./www/main.js",
"main": "./lib/BoilerplateComponent.js",
"license": "MIT",

@@ -7,0 +7,0 @@ "scripts": {

@@ -1,18 +0,20 @@

const path = require('path');
var path = require('path');
module.exports = {
mode: "production",
entry: './src/BoilerplateComponent.jsx',
module: {
rules: [
{
test: /\.jsx$/,
include: /src/,
loader: "babel-loader"
}
]
},
output: {
path: __dirname + '/www',
}
mode: 'production',
entry: './src/BoilerplateComponent.jsx',
output: {
path: path.resolve('lib'),
filename: 'main.js',
libraryTarget: 'commonjs2'
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /(node_modules)/,
use: 'babel-loader'
}
]
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc