Skip to content

Commit 87f045b

Browse files
Merge pull request #20 from zentered/upgrade-highlight
fix: upgrade highlight version
2 parents 8a0722a + 88f095f commit 87f045b

File tree

10 files changed

+16151
-8633
lines changed

10 files changed

+16151
-8633
lines changed

.github/workflows/publish.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,18 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v3
14-
- uses: pnpm/[email protected]
15-
with:
16-
version: 'latest'
1714
- uses: actions/setup-node@v3
1815
with:
1916
node-version: 18
20-
cache: 'pnpm'
17+
cache: 'npm'
2118
- name: Install Dependencies
22-
run: pnpm install
19+
run: npm install
2320

2421
- name: Test
25-
run: pnpm test
22+
run: npm test
2623

2724
- name: Build
28-
run: pnpm build
25+
run: npm run build
2926

3027
- name: Semantic Release
3128
run: npx semantic-release

.github/workflows/test.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,15 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: pnpm/[email protected]
16-
with:
17-
version: 'latest'
1815
- uses: actions/setup-node@v3
1916
with:
2017
node-version: 18
21-
cache: 'pnpm'
18+
cache: 'npm'
2219
- name: Install Dependencies
23-
run: pnpm install
20+
run: npm install
2421

2522
- name: Lint Code Base
26-
run: pnpm lint
23+
run: npm run lint
2724

2825
- name: Test
29-
run: pnpm test
26+
run: npm test

.husky/post-merge

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep package.json && pnpm install
4+
git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep package.json && npm install

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
auto-install-peers=true
2+
legacy-peer-deps=true

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,16 @@ export async function getStaticProps(ctx) {
169169
170170
```bash
171171
# build dist folder
172-
pnpm build
172+
npm build
173173
174174
# create system-wide link to project folder
175-
pnpm link .
175+
npm link
176176
177177
# in the website/next project folder
178-
pnpm link @zentered/next-product-docs ../next-product-docs
178+
npm link @zentered/next-product-docs ../next-product-docs
179179
180180
# for continous monitoring in next-product-docs
181-
pnpm watch
181+
npm run watch
182182
```
183183
184184
## Additional Components

0 commit comments

Comments
 (0)