Skip to content

Commit 5194297

Browse files
committed
* Allow individually publishable API client libraries.
* Re-organize into package folders. (#1)
1 parent 9cdcef5 commit 5194297

184 files changed

Lines changed: 2700 additions & 1518 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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77

88
## Testing
99

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

12-
To run the unit tests, simply run:
14+
To run the unit tests (at the root or in one of the sub-packages), simply run:
1315

14-
``` sh
16+
```sh
1517
$ npm test
1618
```
1719

.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+
- "./scripts/link.sh"
17+
- "./scripts/install.sh"
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 <jbd@google.com>
1818
Gor Martsen <gor.martsen@gmail.com>
1919
Hector Rovira <hrovira@gmail.com>
2020
Ido Shamun <idoesh1@gmail.com>
21+
Jason Dobry <jason.dobry@gmail.com>
2122
Jesse Friedman <jesse@jesse.ws>
2223
Johan Euphrosine <proppy@google.com>
2324
Marco Ziccardi <marco.ziccard@gmail.com>

0 commit comments

Comments
 (0)