Skip to content
This repository was archived by the owner on Jun 9, 2019. It is now read-only.

Commit 04e01af

Browse files
committed
Merge pull request #19 from mohayonao/v0.3.0
v0.3.0
2 parents 340aa93 + 595ce44 commit 04e01af

File tree

122 files changed

+9194
-5730
lines changed

Some content is hidden

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

122 files changed

+9194
-5730
lines changed

Diff for: .eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test/bootstrap/assert.js

Diff for: .eslintrc

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"parser": "babel-eslint",
3+
"env": {
4+
"node": true
5+
},
6+
"rules": {
7+
// possible errors
8+
"comma-dangle": [ 2, "always-multiline" ],
9+
"no-cond-assign": [ 2, "expect-parens" ],
10+
"no-console": 2,
11+
"no-extra-boolean-cast": 0,
12+
13+
// best practice
14+
"no-else-return": 2,
15+
"no-floating-decimal": 2,
16+
"no-throw-literal": 2,
17+
"no-multi-spaces": 0,
18+
"yoda": 0,
19+
"wrap-iife": [ 2, "inside" ],
20+
21+
// strict mode
22+
"strict": [ 2, "never" ],
23+
24+
// variables
25+
"no-shadow": 0,
26+
27+
// style
28+
"comma-spacing": 0,
29+
"key-spacing": 0,
30+
"no-underscore-dangle": 0,
31+
"quotes": [ 2, "double", "avoid-escape" ]
32+
}
33+
}

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_STORE
22
node_modules/
33
coverage/
4+
lib/

Diff for: .jshintrc

-18
This file was deleted.

Diff for: .npmignore

-8
This file was deleted.

Diff for: .travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- "0.10"
5-
- "0.11"
4+
- "0.12"
65
env:
76
global:
87
- secure: "ZXHZg3GLqgjUyCmXD3Zy28M16+2EEkT7ab8gBywhU5TUcPElN75PtpOeOWt+1bOHM8ZsdBpb3BSi2wdOsD7p0BYz4XdZoBjufcV5YZp/Jz9Y2DBDP0o4OzaNp7etfSEKgP7qcPu4tDjKzcUEyMAeQBOUF3SY51XQGkkeudXWI60="

Diff for: LICENSE

-22
This file was deleted.

Diff for: bower.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "web-audio-test-api",
33
"description": "Web Audio API test library for CI",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"authors": [
66
"Nao Yonamine <[email protected]>"
77
],
@@ -13,12 +13,17 @@
1313
"src",
1414
"test",
1515
"coverage",
16+
"package.json",
1617
"index.html"
1718
],
1819
"keywords": [
1920
"webaudioapi",
2021
"test"
2122
],
2223
"license": "MIT",
23-
"main": "build/web-audio-test-api.js"
24+
"main": "build/web-audio-test-api.js",
25+
"repository": {
26+
"type": "git",
27+
"url": "http://github.com/mohayonao/web-audio-test-api.git"
28+
}
2429
}

0 commit comments

Comments
 (0)