Skip to content

Commit

Permalink
fix: move back to /. root distribution directory
Browse files Browse the repository at this point in the history
  • Loading branch information
devonChurch committed May 21, 2018
1 parent a60e177 commit 4167a67
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modules/
node_modules/

index.js
index.js.map
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ script:
- npm run build:production

after_success:
# - npm run travis-deploy-once "npm run semantic-release -- --debug"
- npm run semantic-release pre -- --debug
- cp ./package.json ./dist/package.json
- cp ./package-lock.json ./dist/package-lock.json"
- npm publish ./dist
- npm run semantic-release post -- --debug
- npm run travis-deploy-once "npm run semantic-release -- --debug"
# - npm run semantic-release pre -- --debug
# - cp ./package.json ./dist/package.json
# - cp ./package-lock.json ./dist/package-lock.json"
# - npm publish ./dist
# - npm run semantic-release post -- --debug

branches:
except:
Expand Down
2 changes: 0 additions & 2 deletions dist/fish-tacos.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/fish-tacos.js.map

This file was deleted.

2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const PRODUCTION_ENV = "production";
const DEVELOPMENT_ENV = "development";
const { NODE_ENV = PRODUCTION_ENV } = process.env;
const isProduction = NODE_ENV === PRODUCTION_ENV;
const dirDist = path.resolve(__dirname, "dist");
const dirDist = path.resolve(__dirname);
const dirSrc = path.resolve(__dirname, "src");

const config = {
Expand Down

0 comments on commit 4167a67

Please sign in to comment.