File tree 2 files changed +14
-16
lines changed
2 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 40
40
node-version : 20.16.0
41
41
cache : pnpm
42
42
- name : Install dependencies
43
- run : |
44
- if [ -e pnpm-lock.yaml ]; then
45
- pnpm i --frozen-lockfile
46
- elif [ -e yarn.lock ]; then
47
- yarn install --frozen-lockfile
48
- elif [ -e package-lock.json ]; then
49
- npm ci
50
- else
51
- npm i
52
- fi
43
+ run : pnpm i --frozen-lockfile
53
44
- name : Build
54
45
run : pnpm build
55
46
env :
Original file line number Diff line number Diff line change 1
- # Setup
1
+ # Vue playground
2
+ ### The project uses [ PNPM] ( https://pnpm.io/ ) as a default package manager
2
3
3
- ## Create ` .env ` like ` .env.example `
4
- ## Run ` yarn install ` to install libs
4
+ ## Setup
5
+ ### 1. Create ` .env ` like ` .env.example `
6
+ ### 2. Dependencies installation
5
7
``` shell
6
- yarn install
8
+ pnpm i --frozen-lockfile
7
9
```
8
- ## Run ` yarn dev ` to run dev mode
10
+ ### 3. Starting the development server
9
11
``` shell
10
- yarn dev
12
+ pnpm start
13
+ ```
14
+
15
+ #### 4. Starting the storybook server
16
+ ``` shell
17
+ pnpm storybook
11
18
```
You can’t perform that action at this time.
0 commit comments