Skip to content

Commit e9ba11e

Browse files
committed
yarn->npm
1 parent 6c44c7d commit e9ba11e

File tree

6 files changed

+15887
-8343
lines changed

6 files changed

+15887
-8343
lines changed

ui/.ackrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@
1010
--ignore-dir=tmp
1111
--ignore-dir=vendor
1212
--ignore-file=ext:svg
13-
--ignore-file=is:selection.json
14-
--ignore-file=is:yarn.lock
13+
--ignore-file=is:package-lock.json

ui/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
build: clean
2-
yarn
3-
yarn generate
2+
npm install
3+
npm run generate
44
rm -rf ../static/ui/_nuxt
55
cp -rp .output/public/* ../static/ui/
66
touch ../static/ui/_nuxt/_placeholder
77

88
clean:
9-
yarn clean
9+
npm run clean

ui/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introdu
55
## Setup
66

77
```bash
8-
yarn install
8+
npm install
99
```
1010

1111
## Development Server
1212

1313
Start the development server on `http://localhost:9091`:
1414

1515
```bash
16-
yarn dev
16+
npm run dev
1717
```
1818

1919
## Production
2020

21-
Build the application for embedding into GPTScript:
21+
Build the application for embedding into GPTScript (the Makefile does this):
2222

2323
```bash
24-
yarn run generate
24+
npm run generate
2525
```

0 commit comments

Comments
 (0)