htmlguyllc-jpack
Advanced tools
Comparing version 0.1.4 to 0.1.6
{ | ||
"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": { | ||
} | ||
} | ||
} |
@@ -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
143831
1827
8