Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 18bff12

Browse files
chore(multiple): 0.0.2 release proposal (#68)
1 parent 5331b5f commit 18bff12

File tree

7 files changed

+24
-29
lines changed

7 files changed

+24
-29
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "0.0.1"
6+
"version": "0.0.2"
77
}

packages/opencensus-web-all/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
{
22
"name": "@opencensus/web-all",
3-
"version": "0.0.1",
4-
"description":
5-
"OpenCensus Web All combines all the main OpenCensus Web packages to provide distributions for easy use in web applications via <script> tags.",
3+
"version": "0.0.2",
4+
"description": "OpenCensus Web All combines all the main OpenCensus Web packages to provide distributions for easy use in web applications via <script> tags.",
65
"main": "build/src/index.js",
76
"types": "build/src/index.d.ts",
87
"scripts": {
98
"build:prod": "webpack --config ./webpack/prod-bundles.config.js",
109
"build:dev": "webpack --config ./webpack/dev-bundles.config.js",
11-
"start:webpack-server":
12-
"webpack-dev-server --config ./webpack/dev-bundles.config.js",
10+
"start:webpack-server": "webpack-dev-server --config ./webpack/dev-bundles.config.js",
1311
"test": "karma start --single-run",
1412
"test:start": "karma start",
1513
"codecov": "codecov -f coverage/*.json",
@@ -71,10 +69,12 @@
7169
"webpack-dev-server": "^3.2.1"
7270
},
7371
"dependencies": {
74-
"@opencensus/web-core": "^0.0.1",
75-
"@opencensus/web-exporter-ocagent": "^0.0.1",
76-
"@opencensus/web-instrumentation-perf": "^0.0.1",
77-
"@opencensus/web-propagation-tracecontext": "^0.0.1"
72+
"@opencensus/web-core": "^0.0.2",
73+
"@opencensus/web-exporter-ocagent": "^0.0.2",
74+
"@opencensus/web-instrumentation-perf": "^0.0.2",
75+
"@opencensus/web-propagation-tracecontext": "^0.0.2"
7876
},
79-
"sideEffects": ["./src/entrypoints/*.ts"]
77+
"sideEffects": [
78+
"./src/entrypoints/*.ts"
79+
]
8080
}

packages/opencensus-web-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opencensus/web-core",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "OpenCensus Web is a toolkit for collecting application performance and behavior data from client side web browser apps.",
55
"main": "build/src/index.js",
66
"types": "build/src/index.d.ts",
@@ -61,7 +61,7 @@
6161
"webpack-cli": "^3.1.0"
6262
},
6363
"dependencies": {
64-
"@opencensus/web-types": "^0.0.1"
64+
"@opencensus/web-types": "^0.0.2"
6565
},
6666
"sideEffects": false
6767
}

packages/opencensus-web-exporter-ocagent/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@opencensus/web-exporter-ocagent",
3-
"version": "0.0.1",
4-
"description":
5-
"OpenCensus Agent Exporter web allows user to send collected traces to the OpenCensus Agent via HTTP/JSON in a browser.",
3+
"version": "0.0.2",
4+
"description": "OpenCensus Agent Exporter web allows user to send collected traces to the OpenCensus Agent via HTTP/JSON in a browser.",
65
"main": "build/src/index.js",
76
"types": "build/src/index.d.ts",
87
"scripts": {
@@ -62,7 +61,7 @@
6261
"webpack-cli": "^3.1.0"
6362
},
6463
"dependencies": {
65-
"@opencensus/web-core": "^0.0.1"
64+
"@opencensus/web-core": "^0.0.2"
6665
},
6766
"sideEffects": false
6867
}

packages/opencensus-web-instrumentation-perf/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@opencensus/web-instrumentation-perf",
3-
"version": "0.0.1",
4-
"description":
5-
"OpenCensus Web instrumentation to generate spans for browser performance API data.",
3+
"version": "0.0.2",
4+
"description": "OpenCensus Web instrumentation to generate spans for browser performance API data.",
65
"main": "build/src/index.js",
76
"types": "build/src/index.d.ts",
87
"scripts": {
@@ -63,7 +62,7 @@
6362
"webpack-cli": "^3.1.0"
6463
},
6564
"dependencies": {
66-
"@opencensus/web-core": "^0.0.1"
65+
"@opencensus/web-core": "^0.0.2"
6766
},
6867
"sideEffects": false
6968
}

packages/opencensus-web-propagation-tracecontext/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@opencensus/web-propagation-tracecontext",
3-
"version": "0.0.1",
4-
"description":
5-
"OpenCensus Trace Context format propagation for the web browser",
3+
"version": "0.0.2",
4+
"description": "OpenCensus Trace Context format propagation for the web browser",
65
"main": "build/src/index.js",
76
"types": "build/src/index.d.ts",
87
"scripts": {
@@ -62,7 +61,7 @@
6261
"webpack-cli": "^3.1.0"
6362
},
6463
"dependencies": {
65-
"@opencensus/web-core": "^0.0.1"
64+
"@opencensus/web-core": "^0.0.2"
6665
},
6766
"sideEffects": false
6867
}

packages/opencensus-web-types/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@opencensus/web-types",
3-
"version": "0.0.1",
4-
"description":
5-
"OpenCensus Web types is a slightly-patched copy of the `types.ts` files from `@opencensus/core` so that they can be easily imported in web-specific packages.",
3+
"version": "0.0.2",
4+
"description": "OpenCensus Web types is a slightly-patched copy of the `types.ts` files from `@opencensus/core` so that they can be easily imported in web-specific packages.",
65
"main": "build/src/index.js",
76
"types": "build/src/index.d.ts",
87
"scripts": {
@@ -47,6 +46,5 @@
4746
"rimraf": "^2.6.2",
4847
"typescript": "^3.1.6"
4948
},
50-
"dependencies": {},
5149
"sideEffects": false
5250
}

0 commit comments

Comments
 (0)