Skip to content

Commit a6def70

Browse files
Refactor(tauri): move tauri-api and tauri-updater to tauri (#1455)
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
1 parent 7fab1c0 commit a6def70

Some content is hidden

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

80 files changed

+859
-4754
lines changed

.changes/api-path-cwd.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
22
"api": minor
3-
"tauri-api": minor
43
---
54
Add current working directory to the path api module.

.changes/config-refactor.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
"tauri-utils": minor
3-
"tauri-api": minor
43
"tauri": minor
54
---
65

.changes/config.json

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,18 @@
156156
"tauri-cli": {
157157
"path": "./cli/core",
158158
"manager": "rust",
159-
"dependencies": ["api", "tauri-bundler", "tauri"]
159+
"dependencies": [
160+
"api",
161+
"tauri-bundler",
162+
"tauri"
163+
]
160164
},
161165
"tauri.js": {
162166
"path": "./cli/tauri.js",
163167
"manager": "javascript",
164-
"dependencies": ["tauri-cli"],
168+
"dependencies": [
169+
"tauri-cli"
170+
],
165171
"assets": [
166172
{
167173
"path": "./cli/tauri.js/tauri-${ pkgFile.version }.tgz",
@@ -172,25 +178,20 @@
172178
"create-tauri-app": {
173179
"path": "./cli/create-tauri-app",
174180
"manager": "javascript",
175-
"dependencies": ["tauri.js"]
181+
"dependencies": [
182+
"tauri.js"
183+
]
176184
},
177185
"tauri-utils": {
178186
"path": "./core/tauri-utils",
179187
"manager": "rust"
180188
},
181-
"tauri-api": {
182-
"path": "./core/tauri-api",
183-
"manager": "rust",
184-
"dependencies": ["tauri-utils"]
185-
},
186189
"tauri-macros": {
187190
"path": "./core/tauri-macros",
188191
"manager": "rust",
189-
"dependencies": ["tauri-utils"]
190-
},
191-
"tauri-updater": {
192-
"path": "./core/tauri-updater",
193-
"manager": "rust"
192+
"dependencies": [
193+
"tauri-utils"
194+
]
194195
},
195196
"tauri-build": {
196197
"path": "./core/tauri-build",
@@ -203,7 +204,10 @@
203204
"tauri": {
204205
"path": "./core/tauri",
205206
"manager": "rust",
206-
"dependencies": ["api", "tauri-api", "tauri-macros", "tauri-updater"]
207+
"dependencies": [
208+
"api",
209+
"tauri-macros"
210+
]
207211
}
208212
}
209-
}
213+
}

.changes/correct-http-api-types.md

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

55
Align HTTP API types with the [documentation](https://tauri.studio/en/docs/api/js#http).

.changes/dialog-api.md

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

55
The `message` and `ask` dialogs now use `tinyfiledialogs-rs` instead of `tauri-dialog-rs`.

.changes/event-unlisten-js.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
"tauri-api": minor
32
"tauri": minor
43
---
54

.changes/file-dialog-refactor.md

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

.changes/http-api-refactor.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
"api": minor
3-
"tauri-api": minor
43
"tauri": minor
54
---
65

.changes/js-app-metadata.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
"tauri-api": minor
32
"tauri": minor
43
---
54

.changes/js-event-once.md

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

55
The event listener `once` kind was moved to a dedicated function.

0 commit comments

Comments
 (0)