Skip to content

Commit

Permalink
added .env
Browse files Browse the repository at this point in the history
  • Loading branch information
paustint committed Oct 14, 2018
1 parent 1817c8b commit cd60f98
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
build/tests
.rpt2_cache
dist/
.env

# Created by https://www.gitignore.io/api/node

Expand Down
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ ISSUE_TEMPLATE
CONTRIBUTING.md
CHANGELOG.md
debug/
.rpt2_cache
.rpt2_cache
.env
8 changes: 7 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"@types/node": "8.0.14",
"antlr4ts-cli": "0.4.0-alpha.4",
"chai": "^4.1.2",
"dotenv": "^6.1.0",
"mocha": "^5.2.0",
"release-it": "^7.6.1",
"rollup": "^0.66.6",
Expand Down
4 changes: 3 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import typescript from 'rollup-plugin-typescript2';
import minify from 'rollup-plugin-babel-minify';
// import minify from 'rollup-plugin-babel-minify';
import pkg from './package.json';
import dotenv from 'dotenv';
dotenv.config();

export default [
{
Expand Down

0 comments on commit cd60f98

Please sign in to comment.