Skip to content

Commit f297248

Browse files
authored
Merge branch 'master' into greenkeeper/initial
2 parents ba40429 + f5454e1 commit f297248

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+2971
-3384
lines changed

.babelrc

Lines changed: 10 additions & 0 deletions
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

Lines changed: 10 additions & 0 deletions
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

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

.jshintrc

Lines changed: 0 additions & 41 deletions
This file was deleted.

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

Lines changed: 4 additions & 4 deletions
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

Lines changed: 25 additions & 0 deletions
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

Lines changed: 0 additions & 150 deletions
This file was deleted.

0 commit comments

Comments
 (0)