New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@alchemycodelab/create-app

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alchemycodelab/create-app - npm Package Compare versions

Comparing version 3.3.0 to 4.0.0

2

lib/reactSetup.js

@@ -25,2 +25,3 @@ const path = require('path');

'css-loader',
'dotenv',
'eslint',

@@ -30,3 +31,2 @@ 'eslint-plugin-babel',

'file-loader',
'git://github.com/mehtaphysical/dotenv-webpack#master',
'html-webpack-plugin@next',

@@ -33,0 +33,0 @@ 'identity-obj-proxy',

{
"name": "@alchemycodelab/create-app",
"version": "3.3.0",
"version": "4.0.0",
"description": "",

@@ -5,0 +5,0 @@ "repository": {

/* eslint-disable no-undef */
const webpack = require('webpack');
const path = require('path');
const HtmlPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const Dotenv = require('dotenv-webpack');
const CopyPlugin = require('copy-webpack-plugin');
const env = Object.entries({ ...require('dotenv').config(), ...process.env })
.reduce((acc, [key, value]) => {
acc[`process.env.${key}`] = value;
return acc;
}, {});
// eslint-disable-next-line

@@ -23,5 +29,3 @@ module.exports = {

new CleanWebpackPlugin(),
new Dotenv({
systemvars: true
}),
new webpack.EnvironmentPlugin(env),
new CopyPlugin({

@@ -28,0 +32,0 @@ patterns: [

Sorry, the diff of this file is not supported yet

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