Skip to content

Commit 1ccd918

Browse files
jmdobrystephenplusplus
authored andcommitted
Allow individually publishable API client libraries.
1 parent c741869 commit 1ccd918

184 files changed

Lines changed: 2807 additions & 1520 deletions

File tree

Some content is hidden

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

.github/CONTRIBUTING.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@
77

88
## Testing
99

10+
### Setup
11+
1012
### Unit Tests
1113

12-
To run the unit tests, simply run:
14+
First, run `npm install` at the root of the repository. To run the unit tests
15+
(at the root or in one of the sub-packages), simply run:
1316

14-
``` sh
17+
```sh
1518
$ npm test
1619
```
1720

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
node_modules/*
2-
coverage/*
1+
**/node_modules
2+
**/coverage/*
33
docs/json/**/*.json
44
*.log

.jscsrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
},
2222
"excludeFiles": [
2323
"system-test/data/*",
24-
"test/testdata/*"
24+
"test/testdata/*",
25+
"**/node_modules/"
2526
]
2627
}

.jshintignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
system-test/data/*
2-
test/testdata/*
1+
**/system-test/data/*
2+
**/test/testdata/*
3+
**/node_modules/

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ addons:
1313
packages:
1414
- g++-4.8
1515
before_install:
16+
- npm install shelljs
17+
- "./scripts/link"
1618
- export CXX=g++-4.8
1719
- "$CXX --version"
1820
script: "./scripts/build.sh"

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Burcu Dogan <[email protected]>
1818
Gor Martsen <[email protected]>
1919
Hector Rovira <[email protected]>
2020
Ido Shamun <[email protected]>
21+
Jason Dobry <[email protected]>
2122
Jesse Friedman <[email protected]>
2223
Johan Euphrosine <[email protected]>
2324
Marco Ziccardi <[email protected]>

0 commit comments

Comments
 (0)