generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Merge workspace into single package. (#362)
* refactor repo into one package * take pnpm for a test drive * add tslib again * fix dist path in action.yml * split up core script. add eslint * don't early return artifacts on macos * up node version * update deps * fix change files * rebuild dist
- Loading branch information
1 parent
fa62927
commit c5c0e27
Showing
71 changed files
with
3,370 additions
and
3,481 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
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,5 +1,4 @@ | ||
--- | ||
"@tauri-apps/action-core": patch | ||
"action": patch | ||
--- | ||
|
||
|
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,5 +1,5 @@ | ||
--- | ||
"@tauri-apps/action-core": patch | ||
'action': patch | ||
--- | ||
|
||
Replace `_` and `.` with `-` in the product name on Linux. |
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,6 +1,5 @@ | ||
--- | ||
"@tauri-apps/action-core": patch | ||
"action": patch | ||
'action': patch | ||
--- | ||
|
||
Fixes usage with `vue-cli-plugin-tauri`. |
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,20 @@ | ||
module.exports = { | ||
env: { | ||
node: true, | ||
es2021: true, | ||
}, | ||
extends: [ | ||
'prettier', | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
}, | ||
plugins: ['@typescript-eslint'], | ||
rules: { | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
}, | ||
}; |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
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
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
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,12 +1,47 @@ | ||
{ | ||
"private": true, | ||
"workspaces": [ | ||
"packages/core", | ||
"packages/cli", | ||
"packages/action" | ||
"name": "tauri-action", | ||
"version": "0.3.1", | ||
"description": "Tauri GitHub Action", | ||
"author": "Lucas Nogueira <lucas@tauri.studio>", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"scripts": { | ||
"build": "ncc build src/index.ts -o dist -m", | ||
"lint": "eslint src/**" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/tauri-apps/tauri-action.git" | ||
}, | ||
"keywords": [ | ||
"actions", | ||
"tauri" | ||
], | ||
"dependencies": { | ||
"@actions/core": "1.10.0", | ||
"@actions/github": "5.1.1", | ||
"@iarna/toml": "2.2.5", | ||
"execa": "6.1.0", | ||
"glob-gitignore": "^1.0.14", | ||
"ignore": "5.2.4", | ||
"json5": "2.2.3", | ||
"string-argv": "0.3.1", | ||
"tslib": "2.5.0" | ||
}, | ||
"devDependencies": { | ||
"covector": "0.7.3", | ||
"prettier": "^2.8.0" | ||
"@types/node": "16.18.11", | ||
"@typescript-eslint/eslint-plugin": "5.49.0", | ||
"@typescript-eslint/parser": "5.49.0", | ||
"@vercel/ncc": "0.36.1", | ||
"covector": "0.8.0", | ||
"eslint": "8.33.0", | ||
"eslint-config-prettier": "8.6.0", | ||
"eslint-config-standard-with-typescript": "33.0.0", | ||
"eslint-plugin-import": "2.27.5", | ||
"eslint-plugin-n": "15.6.1", | ||
"eslint-plugin-promise": "6.1.1", | ||
"prettier": "2.8.3", | ||
"typescript": "4.9.4" | ||
} | ||
} |
Oops, something went wrong.