Skip to content

Commit

Permalink
Merge pull request #158 from jvilk/rollup-2
Browse files Browse the repository at this point in the history
Use rollup and feross/Buffer
  • Loading branch information
John Vilk authored Oct 11, 2016
2 parents 23dfa99 + 2384935 commit a37b5e3
Show file tree
Hide file tree
Showing 178 changed files with 5,458 additions and 13,822 deletions.
30 changes: 30 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ doc
*.json
!tsconfig.json
test/fixtures
test/harness/load_fixtures.js
test/harness/factories/workerfs_worker.js
test/harness/load_fixtures.ts
test/harness/factories/workerfs_worker.js*
!test/fixtures/files
!test/fixtures/README.md
tscommand*
Expand All @@ -18,11 +18,11 @@ src/.baseDir.ts
# run.ts is auto-generated
test/harness/run.ts
# as is test.js
test/harness/test.js
# as is backends.ts
src/core/backends.ts
test/harness/test.js*
.tscache
generated_node_tsconfig.json
coverage

/gulptasks.js*
dist
.vscode
.tscache
4 changes: 1 addition & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
Gruntfile.js
test
# Includes generated_node_tsconfig.json
*tsconfig.json
coverage
doc
build
typings
.tscache
.vscode
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "0.12"
- "4"

sudo: false

Expand All @@ -23,4 +23,4 @@ before_script:
- sh -e /etc/init.d/xvfb start

script:
- "grunt test_travis"
- "npm test"
Loading

0 comments on commit a37b5e3

Please sign in to comment.