这是indexloc提供的服务,不要输入任何密码
Skip to content

feat(release): @turbo/repository v0.0.1-canary.11 #9844

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions packages/turbo-repository/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"description": "",
"bugs": "https://github.com/vercel/turborepo/issues",
"homepage": "https://turbo.build/repo",
Expand All @@ -15,13 +15,13 @@
],
"types": "dist/index.d.ts",
"optionalDependencies": {
"@turbo/repository-darwin-x64": "0.0.1-canary.10",
"@turbo/repository-darwin-arm64": "0.0.1-canary.10",
"@turbo/repository-linux-x64-gnu": "0.0.1-canary.10",
"@turbo/repository-linux-arm64-gnu": "0.0.1-canary.10",
"@turbo/repository-linux-x64-musl": "0.0.1-canary.10",
"@turbo/repository-linux-arm64-musl": "0.0.1-canary.10",
"@turbo/repository-win32-x64-msvc": "0.0.1-canary.10",
"@turbo/repository-win32-arm64-msvc": "0.0.1-canary.10"
"@turbo/repository-darwin-x64": "0.0.1-canary.11",
"@turbo/repository-darwin-arm64": "0.0.1-canary.11",
"@turbo/repository-linux-x64-gnu": "0.0.1-canary.11",
"@turbo/repository-linux-arm64-gnu": "0.0.1-canary.11",
"@turbo/repository-linux-x64-musl": "0.0.1-canary.11",
"@turbo/repository-linux-arm64-musl": "0.0.1-canary.11",
"@turbo/repository-win32-x64-msvc": "0.0.1-canary.11",
"@turbo/repository-win32-arm64-msvc": "0.0.1-canary.11"
}
}
2 changes: 1 addition & 1 deletion packages/turbo-repository/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-darwin-arm64",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-repository/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-darwin-x64",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-linux-arm64-gnu",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-linux-arm64-musl",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-repository/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-linux-x64-gnu",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-linux-x64-musl",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-win32-arm64-msvc",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@turbo/repository-win32-x64-msvc",
"version": "0.0.1-canary.10",
"version": "0.0.1-canary.11",
"repository": {
"type": "git",
"url": "https://github.com/vercel/turborepo",
Expand Down
7 changes: 5 additions & 2 deletions packages/turbo-repository/scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ set -e
# Note: BASH_SOURCE[0] is a _relative_ path, so grab
# the full realpath right away before manipulating.
SCRIPT_FILE="$( realpath "${BASH_SOURCE[0]}" )"
PKG_ROOT=$(realpath "${SCRIPT_FILE}/../..")
echo "SCRIPT_FILE: ${SCRIPT_FILE}"
PKG_ROOT=$(realpath "$(dirname "${SCRIPT_FILE}")/..")
echo "PKG_ROOT: ${PKG_ROOT}"
JS_PACKAGE_JSON="${PKG_ROOT}/js/package.json"
echo "JS_PACKAGE_JSON: ${JS_PACKAGE_JSON}"

if [ $# != 1 ]; then
CURRENT_VERSION=$(jq -r .version "${JS_PACKAGE_JSON}")
echo "Missing version, current version is $CURRENT_VERSION"
echo "Missing version, current version is $CURRENT_VERSION. Please provide a new version as an argument to this script."
exit 1
fi

Expand Down
Loading