Skip to content

Commit aea6145

Browse files
authored
refactor(repo): add /tooling folder (#1457)
1 parent a6def70 commit aea6145

File tree

242 files changed

+159
-6315
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+159
-6315
lines changed

.changes/cli-no-targets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"tauri-cli": minor
2+
"cli.rs": minor
33
---
44

55
You can now run `cargo tauri build -t none` to speed up the build if you don't need executables.

.changes/cli-rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"tauri-cli": minor
2+
"cli.rs": minor
33
"tauri-bundler": minor
44
---
55

.changes/command-shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"tauri-cli": patch
2+
"cli.rs": patch
33
---
44

55
Run `beforeDevCommand` and `beforeBuildCommand` in a shell.

.changes/config.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -140,46 +140,46 @@
140140
},
141141
"packages": {
142142
"api": {
143-
"path": "./api",
143+
"path": "./tooling/api",
144144
"manager": "javascript",
145145
"assets": [
146146
{
147-
"path": "./api/tauri-${ pkgFile.version }.tgz",
147+
"path": "./tooling/api/tauri-${ pkgFile.version }.tgz",
148148
"name": "api-${ pkgFile.version }.tgz"
149149
}
150150
]
151151
},
152152
"tauri-bundler": {
153-
"path": "./cli/tauri-bundler",
153+
"path": "./tooling/bundler",
154154
"manager": "rust"
155155
},
156-
"tauri-cli": {
157-
"path": "./cli/core",
156+
"cli.rs": {
157+
"path": "./tooling/cli.rs",
158158
"manager": "rust",
159159
"dependencies": [
160160
"api",
161161
"tauri-bundler",
162162
"tauri"
163163
]
164164
},
165-
"tauri.js": {
166-
"path": "./cli/tauri.js",
165+
"cli.js": {
166+
"path": "./tooling/cli.js",
167167
"manager": "javascript",
168168
"dependencies": [
169-
"tauri-cli"
169+
"cli.rs"
170170
],
171171
"assets": [
172172
{
173-
"path": "./cli/tauri.js/tauri-${ pkgFile.version }.tgz",
174-
"name": "tauri.js-${ pkgFile.version }.tgz"
173+
"path": "./tooling/cli.js/tauri-${ pkgFile.version }.tgz",
174+
"name": "cli.js-${ pkgFile.version }.tgz"
175175
}
176176
]
177177
},
178178
"create-tauri-app": {
179179
"path": "./cli/create-tauri-app",
180180
"manager": "javascript",
181181
"dependencies": [
182-
"tauri.js"
182+
"cli.js"
183183
]
184184
},
185185
"tauri-utils": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"tauri-cli": patch
2+
"cli.rs": patch
33
---
44

55
Fixes `<a target="_blank">` polyfill.

.changes/fix-ts-api-typings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
"tauri.js": patch
2+
"cli.js": patch
33
"tauri": minor
44
---
55

.changes/license.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
"api": patch
33
"tauri-bundler": patch
4-
"tauri-cli": patch
5-
"tauri.js": patch
4+
"cli.rs": patch
5+
"cli.js": patch
66
"tauri-utils": patch
77
"tauri-macros": patch
88
"tauri-build": patch

.changes/package-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
"tauri": minor
3-
"tauri-cli": minor
3+
"cli.rs": minor
44
---
55

66
Adds `productName` and `version` configs on `tauri.conf.json > package`.

.changes/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Use the following format:
1212
---
1313
"api": patch
1414
"tauri-bundler": patch
15-
"tauri-cli": patch
16-
"tauri.js": patch
15+
"cli.rs": patch
16+
"cli.js": patch
1717
"tauri-utils": patch
1818
"tauri-macros": patch
1919
"tauri-build": patch

.changes/refactor-info.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
"tauri-cli": minor
3-
"tauri.js": minor
2+
"cli.rs": minor
3+
"cli.js": minor
44
---
55

66
The `info` command was rewritten in Rust.

0 commit comments

Comments
 (0)