Skip to content

Commit d415bcc

Browse files
authored
Fix dependencies issues (#11)
* modified README.md * npm audit fix * remove transifex from Github action. Use Github integration instead * update deps * replace jest with vitest
1 parent 0d34a29 commit d415bcc

File tree

10 files changed

+2328
-5140
lines changed

10 files changed

+2328
-5140
lines changed

.github/workflows/build.yml

-6
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ jobs:
4141
- name: Output version
4242
run: echo "Current version ${{ env.CRX_VER }}"
4343

44-
- name: Pull i18n files
45-
uses: transifex/cli-action@v2
46-
with:
47-
token: ${{ secrets.TX_TOKEN }}
48-
args: pull -a
49-
5044
- name: Rebuild the dist directory
5145
run: npm run build
5246

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
run: npm ci --ignore-scripts
3030

3131
- name: Run test cases
32-
run: npm test
32+
run: npm run coverage

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ node_modules
1111
dist
1212
dist.zip
1313
dist-ssr
14+
coverage
1415
*.local
1516

1617
# Editor directories and files

.vscode/extensions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"recommendations": [
3-
"vue.volar"
3+
"vue.volar",
4+
"vitest.explorer"
45
]
56
}

jest.config.js

-11
This file was deleted.

0 commit comments

Comments
 (0)