Skip to content

Commit

Permalink
Merge pull request emberjs#110 from rwjblue/default-to-persisting
Browse files Browse the repository at this point in the history
Default to persistent caching.
  • Loading branch information
rwjblue authored Mar 10, 2017
2 parents 647aa9c + ff13220 commit ed83ecb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion expectations/expected-inline-source-maps.js

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

1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ function Babel(inputTree, _options) {
}

var options = _options || {};
options.persist = 'persist' in options ? options.persist : true;
Filter.call(this, inputTree, options);

delete options.persist;
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
"mkdirp": "^0.5.1",
"mocha": "^3.0.2"
},
"engines": {
"node": ">= 4"
},
"publishConfig": {
"tag": "next"
}
Expand Down

0 comments on commit ed83ecb

Please sign in to comment.