Skip to content

Commit

Permalink
Allow individually publishable API client libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry authored and Stephen Sawchuk committed Aug 4, 2016
1 parent c741869 commit 1ccd918
Show file tree
Hide file tree
Showing 184 changed files with 2,807 additions and 1,520 deletions.
7 changes: 5 additions & 2 deletions .github/CONTRIBUTING.md
Expand Up @@ -7,11 +7,14 @@

## Testing

### Setup

### Unit Tests

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

``` sh
```sh
$ npm test
```

Expand Down
4 changes: 2 additions & 2 deletions .gitignore
@@ -1,4 +1,4 @@
node_modules/*
coverage/*
**/node_modules
**/coverage/*
docs/json/**/*.json
*.log
3 changes: 2 additions & 1 deletion .jscsrc
Expand Up @@ -21,6 +21,7 @@
},
"excludeFiles": [
"system-test/data/*",
"test/testdata/*"
"test/testdata/*",
"**/node_modules/"
]
}
5 changes: 3 additions & 2 deletions .jshintignore
@@ -1,2 +1,3 @@
system-test/data/*
test/testdata/*
**/system-test/data/*
**/test/testdata/*
**/node_modules/
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -13,6 +13,8 @@ addons:
packages:
- g++-4.8
before_install:
- npm install shelljs
- "./scripts/link"
- export CXX=g++-4.8
- "$CXX --version"
script: "./scripts/build.sh"
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Expand Up @@ -18,6 +18,7 @@ Burcu Dogan <jbd@google.com>
Gor Martsen <gor.martsen@gmail.com>
Hector Rovira <hrovira@gmail.com>
Ido Shamun <idoesh1@gmail.com>
Jason Dobry <jason.dobry@gmail.com>
Jesse Friedman <jesse@jesse.ws>
Johan Euphrosine <proppy@google.com>
Marco Ziccardi <marco.ziccard@gmail.com>
Expand Down

0 comments on commit 1ccd918

Please sign in to comment.