mirror of
https://github.com/JonasKruckenberg/tauri-build.git
synced 2025-08-14 21:05:05 +00:00
publish new versions
This commit is contained in:
parent
f593898d49
commit
0379235cd4
@ -2,6 +2,7 @@
|
|||||||
"tag": "beta",
|
"tag": "beta",
|
||||||
"changes": [
|
"changes": [
|
||||||
".changes/chore-update-tauri.md",
|
".changes/chore-update-tauri.md",
|
||||||
|
".changes/fix-build-args.md",
|
||||||
".changes/fix-cli-on-platforms.md",
|
".changes/fix-cli-on-platforms.md",
|
||||||
".changes/fix-project-path.md"
|
".changes/fix-project-path.md"
|
||||||
]
|
]
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# 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]
|
## \[0.1.2-beta.1]
|
||||||
|
|
||||||
- Update Tauri CLI to version `1.0.0-rc.10`
|
- Update Tauri CLI to version `1.0.0-rc.10`
|
||||||
|
4
dist/index.js
generated
vendored
4
dist/index.js
generated
vendored
@ -57,10 +57,10 @@ function buildProject(options) {
|
|||||||
}
|
}
|
||||||
process.chdir(projectPath);
|
process.chdir(projectPath);
|
||||||
if (options.runner) {
|
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 {
|
else {
|
||||||
yield (0, cli_1.run)(args, '');
|
yield (0, cli_1.run)(['build', ...args], '');
|
||||||
}
|
}
|
||||||
const profile = options.debug ? 'debug' : 'release';
|
const profile = options.debug ? 'debug' : 'release';
|
||||||
const outDir = options.target
|
const outDir = options.target
|
||||||
|
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tauri-build",
|
"name": "tauri-build",
|
||||||
"version": "0.1.2-beta.1",
|
"version": "0.1.2-beta.2",
|
||||||
"description": "TypeScript template action",
|
"description": "TypeScript template action",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user