Skip to content

Commit

Permalink
1.1.0 release (take five)
Browse files Browse the repository at this point in the history
  • Loading branch information
mogoodrich committed Nov 7, 2019
1 parent abb2b2f commit f5df5d6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ deploy:
user: dkayiwa
key: $BINTRAY_API_KEY
dry-run: false
skip_cleanup: true
on:
tags: true
14 changes: 8 additions & 6 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ const autoprefixer = require('autoprefixer');

const env = process.env.NODE_ENV;

const THIS_APP_ID = 'orderentry';
const packageJson = require('./package.json');

const THIS_APP_ID = 'orderentry-' + packageJson.version;

var plugins = [];
const nodeModules = {};
Expand Down Expand Up @@ -141,11 +143,11 @@ if (env === 'deploy') {
devtool = 'source-map';
}

if (env === 'development') {
outputFile = `${outputFile}.js`;
vendorOutputFile = "vendor.bundle.js";
outputPath = `${__dirname}/dist/`;
devtool = 'eval-source-map';
if (env === 'development') {
outputFile = `${outputFile}.js`;
vendorOutputFile = "vendor.bundle.js";
outputPath = `${__dirname}/dist/`;
devtool = 'eval-source-map';
}

plugins.push(new BrowserSyncPlugin({
Expand Down

0 comments on commit f5df5d6

Please sign in to comment.