Skip to content

Commit

Permalink
run integration tests with babelified files
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhammerl committed Mar 31, 2018
1 parent 3963a43 commit 6b2ac2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"type": "git",
"url": "git://github.com/emailjs/emailjs-smtp-client.git"
},
"main": "src/client",
"main": "dist/client",
"dependencies": {
"emailjs-base64": "^1.1.4",
"emailjs-tcp-socket": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

rm -rf $PWD/dist
babel src --out-dir dist --ignore '**/*-unit.js' --source-maps inline
babel src --out-dir dist --ignore '**/*-integration.js','**/*-unit.js' --source-maps inline
git reset
git add $PWD/dist
git commit -m 'Updating dist files' -n

0 comments on commit 6b2ac2e

Please sign in to comment.