Skip to content

Commit 30ad6ee

Browse files
committed
Update build toolchain
1 parent cb3f004 commit 30ad6ee

15 files changed

+330
-298
lines changed

.babelrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"presets": ["env"],
3+
"plugins": [
4+
["babel-plugin-inline-import", {
5+
"extensions": [
6+
".blob"
7+
]
8+
}]
9+
]
10+
}

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
end_of_line = lf
10+
max_line_length = null

.gitignore

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
node_modules/
22
npm-debug.log
33
.DS_Store
4-
lib
5-
runtime.json
4+
package-lock.json
5+
6+
# VIM Swap Files
7+
[._]*.s[a-v][a-z]
8+
[._]*.sw[a-p]
9+
[._]s[a-v][a-z]
10+
[._]sw[a-p]

.jshintrc

-41
This file was deleted.

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: node_js
2+
dist: trusty
23
sudo: false
34
node_js:
4-
- 4.1
5-
before_install:
6-
- npm install -g grunt-cli
5+
- lts/*
76
notifications:
87
email:
98
recipients:
109
11-
10+
addons:
11+
chrome: stable

.vscode/launch.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Run ES6 Tests",
6+
"type": "node",
7+
"request": "launch",
8+
"cwd": "${workspaceRoot}",
9+
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
10+
"stopOnEntry": false,
11+
"args": [
12+
"./src/*-unit.js",
13+
"--require", "babel-register",
14+
"--require", "babel-polyfill",
15+
"testutils.js",
16+
"--reporter", "spec",
17+
"--no-timeouts"
18+
],
19+
"runtimeArgs": [
20+
"--nolazy"
21+
],
22+
"sourceMaps": true
23+
}
24+
]
25+
}

Gruntfile.js

-150
This file was deleted.

0 commit comments

Comments
 (0)