diff options
author | Bjorn Lu | 2023-06-13 16:58:27 +0800 |
---|---|---|
committer | GitHub | 2023-06-13 10:58:27 +0200 |
commit | b6f1231e611252975ab02af849645739041acfd4 (patch) | |
tree | c98075b8f961d367ec38b1982f9b5d6fbad988a8 | |
parent | 84b766e716bad3335ae6ef7cebd2026ca2fef3d9 (diff) | |
download | IT.starlight-b6f1231e611252975ab02af849645739041acfd4.tar.gz IT.starlight-b6f1231e611252975ab02af849645739041acfd4.tar.bz2 IT.starlight-b6f1231e611252975ab02af849645739041acfd4.zip |
Automatically bump example deps versions on release (#195)
-rw-r--r-- | .changeset/config.json | 2 | ||||
-rw-r--r-- | .npmrc | 2 | ||||
-rw-r--r-- | pnpm-lock.yaml | 9 | ||||
-rw-r--r-- | pnpm-workspace.yaml | 1 |
4 files changed, 13 insertions, 1 deletions
diff --git a/.changeset/config.json b/.changeset/config.json index dc750e1b..6cfedb43 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -9,5 +9,5 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": ["starlight-docs"] + "ignore": ["starlight-docs", "@example/*"] } @@ -0,0 +1,2 @@ +prefer-workspace-packages=true +link-workspace-packages=true diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fc7803f1..6a006dd0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -51,6 +51,15 @@ importers: specifier: ^4.1.2 version: 4.1.2 + examples/basics: + dependencies: + '@astrojs/starlight': + specifier: ^0.1.0 + version: link:../../packages/starlight + astro: + specifier: ^2.5.0 + version: 2.5.0(@types/node@18.15.11) + packages/starlight: dependencies: '@astrojs/mdx': diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e1dad60c..bf7d3781 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,4 @@ packages: - 'packages/**/*' + - 'examples/**/*' - 'docs' |