Skip to content

Commit 28c3afb

Browse files
author
Zerone
committed
Merge branch 'main' into dev
2 parents 4a0f2be + d1d1828 commit 28c3afb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+4032
-1397
lines changed

.eslintignore

+26-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
1-
dist
2-
public
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
310
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
19+
20+
# Editor directories and files
21+
.idea
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?
427

5-
commitlint.config.js
28+
*.tsbuildinfo

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: ${{ steps.release.outputs.release_created }}
2323
- uses: actions/setup-node@v4
2424
with:
25-
node-version: 16
25+
node-version: 18
2626
registry-url: 'https://registry.npmjs.org'
2727
if: ${{ steps.release.outputs.release_created }}
2828
- uses: pnpm/action-setup@v3

.github/workflows/test.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: test
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 18
16+
- uses: pnpm/action-setup@v3
17+
with:
18+
version: 8
19+
- name: install
20+
run: pnpm i
21+
- name: test
22+
run: pnpm test

.prettierignore

+26-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
1-
dist
2-
public
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
310
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
19+
20+
# Editor directories and files
21+
.idea
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?
427

5-
commitlint.config.js
28+
*.tsbuildinfo

.stylelintignore

+26-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
1-
dist
2-
public
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
310
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
19+
20+
# Editor directories and files
21+
.idea
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?
427

5-
commitlint.config.js
28+
*.tsbuildinfo

.vscode/extensions.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"recommendations": [
33
"Vue.volar",
4-
"Vue.vscode-typescript-vue-plugin",
54
"dbaeumer.vscode-eslint",
65
"esbenp.prettier-vscode",
76
"stylelint.vscode-stylelint"

CHANGELOG.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
# Changelog
22

3-
## [0.1.2](https://github.com/zero-one-code/vue-default-page/compare/v0.1.1...v0.1.2) (2024-02-15)
4-
3+
## [1.0.2](https://github.com/zero-one-code/vue-default-page/compare/v1.0.1...v1.0.2) (2024-06-01)
54

65
### Bug Fixes
76

8-
* export css ([72ab1c0](https://github.com/zero-one-code/vue-default-page/commit/72ab1c0e232e93d37d61ccd3a3d13dbd98ec34dc))
9-
10-
## [0.1.1](https://github.com/zero-one-code/vue-default-page/compare/v0.1.0...v0.1.1) (2024-02-15)
7+
- the inaccuracy in height retrieval ([0711dc9](https://github.com/zero-one-code/vue-default-page/commit/0711dc9605fa4328f5984cf78232cbe66148cd9e))
118

9+
## [1.0.1](https://github.com/zero-one-code/vue-default-page/compare/v1.0.0...v1.0.1) (2024-02-20)
1210

1311
### Bug Fixes
1412

15-
* d test.ts ([8bf6106](https://github.com/zero-one-code/vue-default-page/commit/8bf6106aaeed9222c0bf4bd03051ecf4738c1372))
16-
17-
## [0.1.0](https://github.com/zero-one-code/vue-default-page/compare/v0.0.3...v0.1.0) (2024-02-15)
13+
- export types ([9c8107c](https://github.com/zero-one-code/vue-default-page/commit/9c8107c80300661bb822a00f26d58db02c4ea252))
1814

15+
## 1.0.0 (2024-02-15)
1916

2017
### Features
2118

22-
* test ([2aa804b](https://github.com/zero-one-code/vue-default-page/commit/2aa804b33cb3850adc2f9f9b12b1f2fd202d8cec))
19+
- init ([940d111](https://github.com/zero-one-code/vue-default-page/commit/940d1112f2d62b8bf5780f82330292555a5ea2d0))
20+
21+
### Bug Fixes
22+
23+
- export css ([75a3b46](https://github.com/zero-one-code/vue-default-page/commit/75a3b461a7e9bb60a30083deac0122db9d5d8d9d))

0 commit comments

Comments
 (0)