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

htmlguyllc-jpack

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

htmlguyllc-jpack - npm Package Compare versions

Comparing version 0.1.4 to 0.1.6

src/components/index.js

14

package.json
{
"name": "htmlguyllc-jpack",
"version": "0.1.4",
"version": "0.1.6",
"description": "Core Javascript Library of Everyday Objects, Events, and Utilities",

@@ -26,2 +26,12 @@ "main": "dist/jpack.min.js",

},
"devDependencies": {
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"babel-loader": "^8.0.6"
},
"license": "MIT",

@@ -31,2 +41,2 @@ "scripts": {

}
}
}

8

src/jpack.js

@@ -1,5 +0,5 @@

import * as components from '../components';
import * as objects from '../objects';
import * as plugin_wrappers from '../plugin_wrappers';
import * as utilities from '../utilities';
import * as components from './components';
import * as objects from './objects';
import * as plugin_wrappers from './plugin_wrappers';
import * as utilities from './utilities';

@@ -6,0 +6,0 @@ const jpack = {components, objects, plugin_wrappers, utilities};

@@ -9,2 +9,14 @@ const path = require('path');

devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.es6$/,
exclude: /node_modules/,
use: 'babel-loader'
}
]
},
resolve: {
extensions: ['.js', '.es6']
},
output: {

@@ -20,2 +32,14 @@ filename: 'jpack.min.js',

mode: 'production',
module: {
rules: [
{
test: /\.es6$/,
exclude: /node_modules/,
use: 'babel-loader'
}
]
},
resolve: {
extensions: ['.js', '.es6']
},
output: {

@@ -22,0 +46,0 @@ filename: 'jpack.min.js',

Sorry, the diff of this file is too big to display

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