Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/changeset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
# Using SHA will usually provide cache hit on subsequent commits in a PR
# but will not provide cache hits between PRs, meaning the first run of a PR
# will usually only be cache misses.
key: ${{ runner.os }}-turbo-changeset-${{ github.sha }}
key: ${{ runner.os }}-turbo-changeset-v11-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-changeset-
${{ runner.os }}-turbo-
${{ runner.os }}-turbo-changeset-v11-
${{ runner.os }}-turbo-v11-
path: .turbo

- name: Build packages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
# Using SHA will usually provide cache hit on subsequent commits in a PR
# but will not provide cache hits between PRs, meaning the first run of a PR
# will usually only be cache misses.
key: ${{ runner.os }}-turbo-ci-${{ github.sha }}
key: ${{ runner.os }}-turbo-ci-v11-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-ci-
${{ runner.os }}-turbo-
${{ runner.os }}-turbo-ci-v11-
${{ runner.os }}-turbo-v11-
path: .turbo

- name: Build packages
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
# Using SHA will usually provide cache hit on subsequent commits in a PR
# but will not provide cache hits between PRs, meaning the first run of a PR
# will usually only be cache misses.
key: ${{ runner.os }}-turbo-pr-pkg-${{ github.sha }}
key: ${{ runner.os }}-turbo-pr-pkg-v11-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-pr-pkg-
${{ runner.os }}-turbo-
${{ runner.os }}-turbo-pr-pkg-v11-
${{ runner.os }}-turbo-v11-
path: .turbo

- name: Build packages
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,18 @@
"@workleap/typescript-configs": "4.0.0",
"agent-browser": "0.27.0",
"eslint": "9.39.2",
"jiti": "2.7.0",
"pkg-pr-new": "0.0.71",
"prettier": "3.8.3",
"retypeapp": "4.5.3",
"syncpack": "15.1.2",
"turbo": "2.9.12",
"typescript": "6.0.3",
"typescript-eslint": "8.59.3"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10"
"pnpm": ">=11"
},
"packageManager": "pnpm@10.30.1"
"packageManager": "pnpm@11.0.8"
}
3 changes: 3 additions & 0 deletions packages/logging/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "@workleap/typescript-configs/library.json",
"compilerOptions": {
"rootDir": "./src"
},
"include": ["src"],
"exclude": ["dist", "node_modules"]
}
623 changes: 309 additions & 314 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ packages:
- packages/*
- samples/*

onlyBuiltDependencies:
- agent-browser
- core-js
- edgedriver
- esbuild
- geckodriver
- protobufjs
minimumReleaseAgeExclude:
- '@workleap/*'
- '@typescript/native-preview*'

allowBuilds:
agent-browser: true
esbuild: true
Loading