Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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
13 changes: 10 additions & 3 deletions .github/workflows/ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,17 @@ jobs:

steps:
- uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: latest

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build-all
cache: 'pnpm'

- run: pnpm install
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This awkwardly already runs build-all.

- run: pnpm build-all
7 changes: 7 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
use-lockfile-v6=true
resolution-mode=highest
auto-install-peers=true
strict-peer-dependencies=false
save-workspace-protocol=false
prefer-workspace-packages=true
include-workspace-root=true
3 changes: 2 additions & 1 deletion examples/calendar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1"
"dotenv": "^16.3.1",
"typechat": "^0.0.10"
},
"devDependencies": {
"@types/node": "^20.3.1",
Expand Down
3 changes: 2 additions & 1 deletion examples/coffeeShop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1"
"dotenv": "^16.3.1",
"typechat": "^0.0.10"
},
"devDependencies": {
"@types/node": "^20.3.1",
Expand Down
3 changes: 2 additions & 1 deletion examples/math/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1"
"dotenv": "^16.3.1",
"typechat": "^0.0.10"
},
"devDependencies": {
"@types/node": "^20.3.1",
Expand Down
3 changes: 2 additions & 1 deletion examples/music/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"chalk": "^2.3.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"open": "^7.0.4"
"open": "^7.0.4",
"typechat": "^0.0.10"
},
"devDependencies": {
"@types/express": "^4.17.17",
Expand Down
3 changes: 2 additions & 1 deletion examples/restaurant/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1"
"dotenv": "^16.3.1",
"typechat": "^0.0.10"
},
"devDependencies": {
"@types/node": "^20.3.1",
Expand Down
3 changes: 2 additions & 1 deletion examples/sentiment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1"
"dotenv": "^16.3.1",
"typechat": "^0.0.10"
},
"devDependencies": {
"@types/node": "^20.3.1",
Expand Down
Loading