generated from halo-dev/plugin-starter
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update project infra Signed-off-by: Ryan Wang <[email protected]> * Update build.gradle Co-authored-by: guqing <[email protected]> --------- Signed-off-by: Ryan Wang <[email protected]> Co-authored-by: guqing <[email protected]>
- Loading branch information
Showing
21 changed files
with
247 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,20 @@ name: Build Plugin JAR File | |
|
||
on: | ||
push: | ||
branches: [ main ] | ||
branches: | ||
- main | ||
paths: | ||
- "**" | ||
- "!**.md" | ||
release: | ||
types: | ||
- created | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "**" | ||
- "!**.md" | ||
|
||
jobs: | ||
build: | ||
|
@@ -23,12 +33,12 @@ jobs: | |
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version: 18 | ||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 7 | ||
version: 8 | ||
run_install: false | ||
- name: Get pnpm store directory | ||
id: pnpm-cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"extends": "@vue/tsconfig/tsconfig.web.json", | ||
"extends": "@vue/tsconfig/tsconfig.dom.json", | ||
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"], | ||
"exclude": ["src/**/__tests__/*"], | ||
"compilerOptions": { | ||
"composite": true, | ||
"lib": ["esnext"], | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["./src/*"] | ||
}, | ||
"ignoreDeprecations": "5.0", | ||
"types": ["unplugin-icons/types/vue"] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "@tsconfig/node18/tsconfig.json", | ||
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*"], | ||
"compilerOptions": { | ||
"composite": true, | ||
"module": "ESNext", | ||
"types": ["node"], | ||
"moduleResolution": "Bundler" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
{ | ||
"extends": "@vue/tsconfig/tsconfig.web.json", | ||
"include": [ | ||
"./env.d.ts", | ||
"./src/**/*", | ||
"./src/**/*.vue" | ||
], | ||
"exclude": [ | ||
"./src/**/__tests__/*" | ||
], | ||
"extends": "@vue/tsconfig/tsconfig.dom.json", | ||
"include": ["./env.d.ts", "./src/**/*", "./src/**/*.vue"], | ||
"exclude": ["./src/**/__tests__/*"], | ||
"compilerOptions": { | ||
"composite": true, | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": [ | ||
"./src/*" | ||
] | ||
} | ||
"@/*": ["./src/*"] | ||
}, | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "@tsconfig/node18/tsconfig.json", | ||
"include": ["./vite.config.*", "./vitest.config.*"], | ||
"compilerOptions": { | ||
"composite": true, | ||
"types": ["node"], | ||
"moduleResolution": "Bundler" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
{ | ||
"extends": "@vue/tsconfig/tsconfig.web.json", | ||
"include": [ | ||
"./env.d.ts", | ||
"./src/**/*", | ||
"./src/**/*.vue" | ||
], | ||
"exclude": [ | ||
"./src/**/__tests__/*", | ||
"./packages/**/*" | ||
], | ||
"extends": "@vue/tsconfig/tsconfig.dom.json", | ||
"include": ["./env.d.ts", "./src/**/*", "./src/**/*.vue"], | ||
"exclude": ["./src/**/__tests__/*", "./packages/**/*"], | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"composite": true, | ||
"noImplicitAny": false, | ||
"paths": { | ||
"@/*": [ | ||
"./src/*" | ||
] | ||
"@/*": ["./src/*"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
{ | ||
"extends": "@vue/tsconfig/tsconfig.node.json", | ||
"include": [ | ||
"./vite.config.*" | ||
], | ||
"extends": "@tsconfig/node18/tsconfig.json", | ||
"include": ["./vite.config.*"], | ||
"compilerOptions": { | ||
"composite": true, | ||
"types": [ | ||
"node", | ||
"vitest" | ||
] | ||
"types": ["node", "vitest"], | ||
"moduleResolution": "Bundler" | ||
} | ||
} |
Oops, something went wrong.