Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 112ab2b

Browse files
committedFeb 26, 2024·
Bump version and update yarn lockfiles for examples
1 parent cae2380 commit 112ab2b

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed
 

‎examples/fastify/yarn.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ __metadata:
55
version: 6
66
cacheKey: 8
77

8-
"@autometrics/autometrics@1.0.0, @autometrics/autometrics@workspace:../../dist/autometrics":
8+
"@autometrics/autometrics@1.0.1, @autometrics/autometrics@workspace:../../dist/autometrics":
99
version: 0.0.0-use.local
1010
resolution: "@autometrics/autometrics@workspace:../../dist/autometrics"
1111
dependencies:
@@ -28,7 +28,7 @@ __metadata:
2828
version: 0.0.0-use.local
2929
resolution: "@autometrics/exporter-prometheus@portal:../../dist/exporter-prometheus::locator=fastify-example%40workspace%3A."
3030
dependencies:
31-
"@autometrics/autometrics": 1.0.0
31+
"@autometrics/autometrics": 1.0.1
3232
"@opentelemetry/api": 1.7.0
3333
"@opentelemetry/exporter-prometheus": 0.45.0
3434
"@opentelemetry/sdk-metrics": 1.18.0
@@ -39,7 +39,7 @@ __metadata:
3939
version: 0.0.0-use.local
4040
resolution: "@autometrics/exporter-prometheus@workspace:../../dist/exporter-prometheus"
4141
dependencies:
42-
"@autometrics/autometrics": 1.0.0
42+
"@autometrics/autometrics": 1.0.1
4343
"@opentelemetry/api": 1.7.0
4444
"@opentelemetry/exporter-prometheus": 0.45.0
4545
"@opentelemetry/sdk-metrics": 1.18.0

‎examples/react-app-experimental/yarn.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ __metadata:
1515
languageName: node
1616
linkType: hard
1717

18-
"@autometrics/autometrics@1.0.0, @autometrics/autometrics@workspace:../../dist/autometrics":
18+
"@autometrics/autometrics@1.0.1, @autometrics/autometrics@workspace:../../dist/autometrics":
1919
version: 0.0.0-use.local
2020
resolution: "@autometrics/autometrics@workspace:../../dist/autometrics"
2121
dependencies:
@@ -38,7 +38,7 @@ __metadata:
3838
version: 0.0.0-use.local
3939
resolution: "@autometrics/exporter-otlp-http@portal:../../dist/exporter-otlp-http::locator=react-app-example%40workspace%3A."
4040
dependencies:
41-
"@autometrics/autometrics": 1.0.0
41+
"@autometrics/autometrics": 1.0.1
4242
"@opentelemetry/api": 1.7.0
4343
"@opentelemetry/exporter-metrics-otlp-http": 0.45.0
4444
"@opentelemetry/sdk-metrics": 1.18.0
@@ -49,7 +49,7 @@ __metadata:
4949
version: 0.0.0-use.local
5050
resolution: "@autometrics/exporter-prometheus@workspace:../../dist/exporter-prometheus"
5151
dependencies:
52-
"@autometrics/autometrics": 1.0.0
52+
"@autometrics/autometrics": 1.0.1
5353
"@opentelemetry/api": 1.7.0
5454
"@opentelemetry/exporter-prometheus": 0.45.0
5555
"@opentelemetry/sdk-metrics": 1.18.0

‎justfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,16 @@ build-examples:
2525
popd
2626
done
2727

28+
# NOTE - You may need to run `just clean` in the project root before running this command
2829
build-parcel-transformer:
2930
cd packages/parcel-transformer-autometrics; just build
3031

32+
# NOTE - You may need to run `just clean` in the project root before running this command
3133
build-typescript-plugin:
3234
cd packages/typescript-plugin; just build
3335

3436
# NOTE - Build the non-deno things first, then the deno things (this order is important)
35-
build-all: build-parcel-transformer build-typescript-plugin build build-examples
37+
build-all: clean-all build-parcel-transformer build-typescript-plugin build build-examples
3638

3739
test:
3840
deno test {{test_permissions}} packages/autometrics

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"name": "autometrics-monorepo",
44
"packageManager": "yarn@3.6.3",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"workspaces": [
77
"dist/autometrics",
88
"dist/exporter-otlp-http",

0 commit comments

Comments
 (0)
Please sign in to comment.