Skip to content

Commit

Permalink
chore: add examples folder to lerna (#360)
Browse files Browse the repository at this point in the history
* chore: add examples folder to lerna

* fix: add private to package.json files in examples
  • Loading branch information
danielkhan committed Sep 27, 2019
1 parent 9ebcb64 commit bd5f7c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/grpc/package.json
@@ -1,5 +1,6 @@
{
"name": "grpc-example",
"private": true,
"version": "0.0.1",
"description": "Example of gRPC integration with OpenTelemetry",
"main": "index.js",
Expand Down
1 change: 1 addition & 0 deletions examples/http/package.json
@@ -1,5 +1,6 @@
{
"name": "http-example",
"private": true,
"version": "0.0.1",
"description": "Example of HTTP integration with OpenTelemetry",
"main": "index.js",
Expand Down
3 changes: 2 additions & 1 deletion lerna.json
Expand Up @@ -2,7 +2,8 @@
"lerna": "3.13.4",
"npmClient": "yarn",
"packages": [
"packages/*"
"packages/*",
"examples/*"
],
"version": "0.0.1"
}

0 comments on commit bd5f7c8

Please sign in to comment.