Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit 52e96ff

Browse files
chore: generate template (#13)
1 parent ad59749 commit 52e96ff

File tree

4 files changed

+18382
-7895
lines changed

4 files changed

+18382
-7895
lines changed

brick/__brick__/{{project_name.snakeCase()}}/.github/workflows/main.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414
uses: actions/setup-node@v3
1515
with:
1616
node-version: 16.x
17-
cache: yarn
18-
cache-dependency-path: yarn.lock
17+
cache: npm
18+
cache-dependency-path: package-lock.json
1919

2020
- name: 📦 Install Dependencies
21-
run: yarn install --frozen-lockfile
21+
run: npm ci
2222

2323
- name: ✨ Check Format
24-
run: yarn run format:check
24+
run: npm run format:check
2525

2626
- name: 🧹 Lint
27-
run: yarn run lint
27+
run: npm run lint
2828

2929
- name: 👷 Build website
30-
run: yarn build
30+
run: npm run build

brick/__brick__/{{project_name.snakeCase()}}/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ This website is built using [Docusaurus 2](https://docusaurus.io/), a modern sta
55
### ⚙️ Installation
66

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

1111
### 🧑‍💻 Local Development
1212

1313
```
14-
$ yarn start
14+
$ npm start
1515
```
1616

1717
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
1818

1919
### 📦 Build
2020

2121
```
22-
$ yarn build
22+
$ npm build
2323
```
2424

2525
This command generates static content into the `build` directory and can be served using any static contents hosting service.

0 commit comments

Comments
 (0)