Skip to content

Commit

Permalink
remove yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
au-re committed Nov 19, 2023
1 parent 534ff07 commit beba1ca
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: install monorepo dependencies
run: yarn install --frozen-lockfile
run: npm ci
- name: build monorepo packages
run: npx lerna run build
- name: test monorepo
Expand Down
2 changes: 1 addition & 1 deletion packages/@pufflig/ps-chains/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ You can find the documentation for this package [here]().
You can preview the chain in a storybook by running:

```
yarn storybook
npm run storybook
```
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-chains/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "yarn build",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest"
Expand All @@ -31,5 +31,5 @@
"mustache": "^4.2.0",
"pino": "^8.15.0"
},
"gitHead": "d637557b77c60c4aa75f6f65b038a6eb4e9d5dc4"
"gitHead": "534ff07d186327e38133c0c14a5badd04ced0a9c"
}
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-models/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"types": "./dist/ps-models.d.ts",
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "yarn build"
"prepublishOnly": "npm run build"
},
"author": "Pufflig AB",
"license": "MIT",
Expand All @@ -24,5 +24,5 @@
"volta": {
"node": "18.16.0"
},
"gitHead": "d637557b77c60c4aa75f6f65b038a6eb4e9d5dc4"
"gitHead": "534ff07d186327e38133c0c14a5badd04ced0a9c"
}
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-nodes-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"types": "./dist/ps-nodes-config.d.ts",
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "yarn build"
"prepublishOnly": "npm run build"
},
"author": "Pufflig AB",
"license": "MIT",
Expand All @@ -30,5 +30,5 @@
"volta": {
"node": "18.16.0"
},
"gitHead": "d637557b77c60c4aa75f6f65b038a6eb4e9d5dc4"
"gitHead": "534ff07d186327e38133c0c14a5badd04ced0a9c"
}
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-nodes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"types": "./dist/ps-nodes.d.ts",
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "yarn build",
"prepublishOnly": "npm run build",
"test": "jest"
},
"author": "Pufflig AB",
Expand Down Expand Up @@ -43,5 +43,5 @@
"openai": "^4.19.0",
"uuid": "^9.0.1"
},
"gitHead": "d637557b77c60c4aa75f6f65b038a6eb4e9d5dc4"
"gitHead": "534ff07d186327e38133c0c14a5badd04ced0a9c"
}
4 changes: 2 additions & 2 deletions packages/@pufflig/ps-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"scripts": {
"build": "tsc && vite build",
"prepublishOnly": "yarn build",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest"
Expand All @@ -24,5 +24,5 @@
"@pufflig/ps-models": "^0.21.5",
"axios": "^1.5.0"
},
"gitHead": "d637557b77c60c4aa75f6f65b038a6eb4e9d5dc4"
"gitHead": "534ff07d186327e38133c0c14a5badd04ced0a9c"
}
2 changes: 1 addition & 1 deletion packages/@pufflig/ps-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"main": "src/index.ts",
"author": "Pufflig AB",
"license": "MIT",
"gitHead": "d637557b77c60c4aa75f6f65b038a6eb4e9d5dc4"
"gitHead": "534ff07d186327e38133c0c14a5badd04ced0a9c"
}

0 comments on commit beba1ca

Please sign in to comment.