Skip to content

Commit 44e9762

Browse files
committed
meta tweaks
1 parent a7874fd commit 44e9762

7 files changed

Lines changed: 8 additions & 12 deletions

File tree

.editorconfig

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,3 @@ insert_final_newline = true
1010
[{package.json,*.yml}]
1111
indent_style = space
1212
indent_size = 2
13-
14-
[*.md]
15-
trim_trailing_whitespace = false

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: false
22
language: node_js
33
node_js:
4+
- '5'
45
- '4'
56
- '0.12'
67
- '0.10'

Gruntfile.js renamed to gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = function (grunt) {
88
presets: ['es2015']
99
},
1010
files: {
11-
'test/tmp/fixture-compiled.js': 'test/fixture.js'
11+
'test/tmp/fixture-compiled.js': 'test/fixtures/fixture.js'
1212
}
1313
}
1414
},

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"compiler"
3535
],
3636
"dependencies": {
37-
"babel-core": "^6.0.12"
37+
"babel-core": "^6.7.4"
3838
},
3939
"devDependencies": {
4040
"babel-preset-es2015": "^6.0.11",
@@ -44,9 +44,7 @@
4444
"grunt-contrib-nodeunit": "^1.0.0",
4545
"xo": "*"
4646
},
47-
"xo": {
48-
"ignores": [
49-
"test/fixture.js"
50-
]
47+
"peerDependencies": {
48+
"grunt": ">=0.4.0"
5149
}
5250
}

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

77

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

4343
## License
4444

45-
MIT © [Sindre Sorhus](http://sindresorhus.com)
45+
MIT © [Sindre Sorhus](https://sindresorhus.com)

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ exports.babel = {
99
var map = fs.readFileSync('test/tmp/fixture-compiled.js.map', 'utf8');
1010
var json = JSON.parse(map);
1111

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

0 commit comments

Comments
 (0)