publish new versions

This commit is contained in:
JonasKruckenberg 2022-05-08 13:36:24 +00:00 committed by GitHub
parent f593898d49
commit 0379235cd4
5 changed files with 10 additions and 4 deletions

View File

@ -2,6 +2,7 @@
"tag": "beta",
"changes": [
".changes/chore-update-tauri.md",
".changes/fix-build-args.md",
".changes/fix-cli-on-platforms.md",
".changes/fix-project-path.md"
]

View File

@ -1,5 +1,10 @@
# Changelog
## \[0.1.2-beta.2]
- Call the correct tauri subcommand
- [f593898](https://github.com/JonasKruckenberg/tauri-build/commit/f593898d4994e9ab7130631432cffbbde4ec74ba) fix: call the correct tauri subcommand on 2022-05-08
## \[0.1.2-beta.1]
- Update Tauri CLI to version `1.0.0-rc.10`

4
dist/index.js generated vendored
View File

@ -57,10 +57,10 @@ function buildProject(options) {
}
process.chdir(projectPath);
if (options.runner) {
yield (0, execa_1.execa)(options.runner, args, { stdio: 'inherit' });
yield (0, execa_1.execa)(options.runner, ['build', ...args], { stdio: 'inherit' });
}
else {
yield (0, cli_1.run)(args, '');
yield (0, cli_1.run)(['build', ...args], '');
}
const profile = options.debug ? 'debug' : 'release';
const outDir = options.target

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "tauri-build",
"version": "0.1.2-beta.1",
"version": "0.1.2-beta.2",
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {