@tauri-apps/cli 1.0.0-rc.0 → 1.0.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +9 -9
  3. package/tauri.js +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.0-rc.1]
4
+
5
+ - Fix `init` command prompting for values even if the argument has been provided on the command line.
6
+ - [def76840](https://www.github.com/tauri-apps/tauri/commit/def76840257a1447723ecda13c807cf0c881f083) fix(cli.rs): do not prompt for `init` values if arg set ([#3400](https://www.github.com/tauri-apps/tauri/pull/3400)) on 2022-02-11
7
+ - [41052dee](https://www.github.com/tauri-apps/tauri/commit/41052deeda2a00ee2b8ec2041c9c87c11de82ab2) fix(covector): add cli.js to change files on 2022-02-11
8
+ - Fixes CLI freezing when running `light.exe` on Windows without the `--verbose` flag.
9
+ - [8beab636](https://www.github.com/tauri-apps/tauri/commit/8beab6363491e2a8757cc9fc0fa1eccc98ece916) fix(cli): build freezing on Windows, closes [#3399](https://www.github.com/tauri-apps/tauri/pull/3399) ([#3402](https://www.github.com/tauri-apps/tauri/pull/3402)) on 2022-02-11
10
+ - Respect `.gitignore` configuration when looking for the folder with the `tauri.conf.json` file.
11
+ - [9c6c5a8c](https://www.github.com/tauri-apps/tauri/commit/9c6c5a8c52c6460d0b0a1a55300e1828262994ba) perf(cli.rs): improve performance of tauri dir lookup reading .gitignore ([#3405](https://www.github.com/tauri-apps/tauri/pull/3405)) on 2022-02-11
12
+ - [41052dee](https://www.github.com/tauri-apps/tauri/commit/41052deeda2a00ee2b8ec2041c9c87c11de82ab2) fix(covector): add cli.js to change files on 2022-02-11
13
+
3
14
  ## \[1.0.0-rc.0]
4
15
 
5
16
  - Do not force Tauri application code on `src-tauri` folder and use a glob pattern to look for a subfolder with a `tauri.conf.json` file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.0.0-rc.0",
3
+ "version": "1.0.0-rc.1",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -61,13 +61,13 @@
61
61
  "format:check": "prettier --check ./package.json ./tauri.js"
62
62
  },
63
63
  "optionalDependencies": {
64
- "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.0",
65
- "@tauri-apps/cli-darwin-x64": "1.0.0-rc.0",
66
- "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.0",
67
- "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.0",
68
- "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.0",
69
- "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.0",
70
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.0",
71
- "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.0"
64
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.1",
65
+ "@tauri-apps/cli-darwin-x64": "1.0.0-rc.1",
66
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.1",
67
+ "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.1",
68
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.1",
69
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.1",
70
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.1",
71
+ "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.1"
72
72
  }
73
73
  }
package/tauri.js CHANGED
@@ -46,5 +46,5 @@ if (binStem === 'node' || binStem === 'nodejs') {
46
46
  try {
47
47
  cli.run(arguments, binName)
48
48
  } catch (e) {
49
- console.log(`Eror running CLI: ${e.message}`)
49
+ console.log(`Error running CLI: ${e.message}`)
50
50
  }