Skip to content

Commit

Permalink
meta tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Apr 8, 2016
1 parent a7874fd commit 44e9762
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 12 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ insert_final_newline = true
[{package.json,*.yml}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
sudo: false
language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
2 changes: 1 addition & 1 deletion Gruntfile.js → gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function (grunt) {
presets: ['es2015']
},
files: {
'test/tmp/fixture-compiled.js': 'test/fixture.js'
'test/tmp/fixture-compiled.js': 'test/fixtures/fixture.js'
}
}
},
Expand Down
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"compiler"
],
"dependencies": {
"babel-core": "^6.0.12"
"babel-core": "^6.7.4"
},
"devDependencies": {
"babel-preset-es2015": "^6.0.11",
Expand All @@ -44,9 +44,7 @@
"grunt-contrib-nodeunit": "^1.0.0",
"xo": "*"
},
"xo": {
"ignores": [
"test/fixture.js"
]
"peerDependencies": {
"grunt": ">=0.4.0"
}
}
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> Use next generation JavaScript, today, with [Babel](https://babeljs.io)
*Issues with the output should be reported on the Babel [issue tracker](https://github.com/babel/babel/issues).*
*Issues with the output should be reported on the Babel [issue tracker](https://phabricator.babeljs.io).*


## Install
Expand Down Expand Up @@ -42,4 +42,4 @@ See the Babel [options](https://babeljs.io/docs/usage/options), except for `file

## License

MIT © [Sindre Sorhus](http://sindresorhus.com)
MIT © [Sindre Sorhus](https://sindresorhus.com)
File renamed without changes.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exports.babel = {
var map = fs.readFileSync('test/tmp/fixture-compiled.js.map', 'utf8');
var json = JSON.parse(map);

test.deepEqual(json.sources, ['../fixture.js']);
test.deepEqual(json.sources, ['../fixtures/fixture.js']);
test.deepEqual(json.file, 'fixture-compiled.js');
test.ok(/\/\/# sourceMappingURL=fixture-compiled.js.map\n$/.test(code));
test.done();
Expand Down

0 comments on commit 44e9762

Please sign in to comment.