forked from srcbookdev/srcbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/srcbookdev#218-Add-AI-generation-to-mar…
…kdown-cells
- Loading branch information
Showing
97 changed files
with
7,465 additions
and
3,247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "restricted", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": ["@srcbook/configs"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
|
||
jobs: | ||
release: | ||
permissions: | ||
contents: write | ||
packages: write | ||
pull-requests: write | ||
name: Releasing | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install PNPM | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9.8.0 | ||
run_install: false | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
|
||
- name: Install Dependencies | ||
run: pnpm i --frozen-lockfile | ||
|
||
- name: Build | ||
run: pnpm build | ||
|
||
- name: Create Release Pull Request or Publish to Github Registry | ||
uses: changesets/action@v1 | ||
with: | ||
publish: pnpm ci:publish | ||
version: pnpm ci:version | ||
commit: 'chore: release package(s)' | ||
title: 'chore: release package(s)' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,6 @@ srcbook/lib/**/* | |
|
||
# turbo | ||
**/.turbo | ||
|
||
# Aide | ||
*.code-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,16 +12,20 @@ | |
"format": "prettier --write .", | ||
"generate": "pnpm --filter api generate", | ||
"migrate": "pnpm --filter api migrate", | ||
"start": "turbo start" | ||
"start": "turbo start", | ||
"ci:publish": "pnpm publish -r", | ||
"ci:version": "pnpm changeset version" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "catalog:", | ||
"prettier": "catalog:", | ||
"typescript": "catalog:", | ||
"@srcbook/configs": "workspace:*" | ||
"@changesets/cli": "^2.27.8", | ||
"@srcbook/configs": "workspace:^", | ||
"@types/node": "^20.14.2", | ||
"prettier": "^3.3.3", | ||
"typescript": "5.6.2", | ||
"eslint": "^8.57.0" | ||
}, | ||
"dependencies": { | ||
"turbo": "^2.0.14" | ||
"turbo": "^2.1.1" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# @srcbook/api | ||
|
||
## 0.0.5 | ||
|
||
### Patch Changes | ||
|
||
- 8c99a0d: Fix broken NPM package | ||
- Updated dependencies [8c99a0d] | ||
- @srcbook/shared@0.0.5 | ||
|
||
## 0.0.4 | ||
|
||
### Patch Changes | ||
|
||
- 9f0a632: Secrets must now be enabled per Srcbook | ||
- Updated dependencies [9f0a632] | ||
- @srcbook/shared@0.0.4 | ||
|
||
## 0.0.3 | ||
|
||
### Patch Changes | ||
|
||
- b5ab034: Added an upsell to subscribe to our mailing list + ability to update in settings | ||
- a920be0: Windows support with resolve DB path off home dir | ||
- 545699e: Add Prettier Support to Code Notebook | ||
- 833264c: Underlying dependency bumps for maintenence | ||
- Updated dependencies [545699e] | ||
- Updated dependencies [833264c] | ||
- @srcbook/shared@0.0.3 | ||
|
||
## 0.0.2 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [735deb8] | ||
- @srcbook/shared@0.0.2 | ||
|
||
## 0.0.1 | ||
|
||
### Patch Changes | ||
|
||
- 4e04909: hover tooltips, tooling improvements, new contributors effyzhang 1egoman! | ||
- Updated dependencies [4e04909] | ||
- @srcbook/shared@0.0.1 |
Oops, something went wrong.