|
128 | 128 | }, |
129 | 129 | "packages": { |
130 | 130 | "@tauri-apps/api": { |
131 | | - "path": "./tooling/api", |
| 131 | + "path": "./packages/api", |
132 | 132 | "manager": "javascript", |
133 | 133 | "publish": [ |
134 | 134 | { |
|
149 | 149 | ] |
150 | 150 | }, |
151 | 151 | "tauri-utils": { |
152 | | - "path": "./core/tauri-utils", |
| 152 | + "path": "./crates/tauri-utils", |
153 | 153 | "manager": "rust" |
154 | 154 | }, |
155 | 155 | "tauri-macos-sign": { |
156 | | - "path": "./tooling/macos-sign", |
| 156 | + "path": "./crates/tauri-macos-sign", |
157 | 157 | "manager": "rust" |
158 | 158 | }, |
159 | 159 | "tauri-bundler": { |
160 | | - "path": "./tooling/bundler", |
| 160 | + "path": "./crates/tauri-bundler", |
161 | 161 | "manager": "rust", |
162 | 162 | "dependencies": ["tauri-utils", "tauri-macos-sign"] |
163 | 163 | }, |
164 | 164 | "tauri-runtime": { |
165 | | - "path": "./core/tauri-runtime", |
| 165 | + "path": "./crates/tauri-runtime", |
166 | 166 | "manager": "rust", |
167 | 167 | "dependencies": ["tauri-utils"] |
168 | 168 | }, |
169 | 169 | "tauri-runtime-wry": { |
170 | | - "path": "./core/tauri-runtime-wry", |
| 170 | + "path": "./crates/tauri-runtime-wry", |
171 | 171 | "manager": "rust", |
172 | 172 | "dependencies": ["tauri-utils", "tauri-runtime"] |
173 | 173 | }, |
174 | 174 | "tauri-codegen": { |
175 | | - "path": "./core/tauri-codegen", |
| 175 | + "path": "./crates/tauri-codegen", |
176 | 176 | "manager": "rust", |
177 | 177 | "dependencies": ["tauri-utils"] |
178 | 178 | }, |
179 | 179 | "tauri-macros": { |
180 | | - "path": "./core/tauri-macros", |
| 180 | + "path": "./crates/tauri-macros", |
181 | 181 | "manager": "rust", |
182 | 182 | "dependencies": ["tauri-codegen", "tauri-utils"] |
183 | 183 | }, |
184 | 184 | "tauri-plugin": { |
185 | | - "path": "./core/tauri-plugin", |
| 185 | + "path": "./crates/tauri-plugin", |
186 | 186 | "manager": "rust", |
187 | 187 | "dependencies": ["tauri-utils"], |
188 | 188 | "postversion": "node ../../.scripts/ci/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }" |
189 | 189 | }, |
190 | 190 | "tauri-build": { |
191 | | - "path": "./core/tauri-build", |
| 191 | + "path": "./crates/tauri-build", |
192 | 192 | "manager": "rust", |
193 | 193 | "dependencies": ["tauri-codegen", "tauri-utils"], |
194 | 194 | "postversion": [ |
195 | 195 | "node ../../.scripts/ci/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }", |
196 | | - "cargo build --manifest-path ../tauri-config-schema/Cargo.toml" |
| 196 | + "cargo build --manifest-path ../tauri-schema-generator/Cargo.toml" |
197 | 197 | ], |
198 | 198 | "assets": [ |
199 | 199 | { |
200 | | - "path": "./tooling/cli/schema.json", |
201 | | - "name": "schema.json" |
| 200 | + "path": "./crates/tauri-schema-generator/schemas/config.schema.json", |
| 201 | + "name": "config.schema.json" |
202 | 202 | } |
203 | 203 | ] |
204 | 204 | }, |
205 | 205 | "tauri": { |
206 | | - "path": "./core/tauri", |
| 206 | + "path": "./crates/tauri", |
207 | 207 | "manager": "rust", |
208 | 208 | "dependencies": [ |
209 | 209 | "tauri-macros", |
|
215 | 215 | "postversion": "node ../../.scripts/ci/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }" |
216 | 216 | }, |
217 | 217 | "@tauri-apps/cli": { |
218 | | - "path": "./tooling/cli/node", |
| 218 | + "path": "./packages/cli", |
219 | 219 | "manager": "javascript", |
220 | 220 | "dependencies": ["tauri-cli"], |
221 | 221 | "postversion": [ |
222 | 222 | "node ../../../.scripts/ci/sync-cli-metadata.js ${ pkg.pkg } ${ release.type }", |
223 | | - "cargo build --manifest-path ../../../core/tauri-config-schema/Cargo.toml" |
| 223 | + "cargo build --manifest-path ../../../crates/tauri-schema-generator/Cargo.toml" |
224 | 224 | ], |
225 | 225 | "prepublish": [], |
226 | 226 | "publish": [], |
227 | 227 | "postpublish": [] |
228 | 228 | }, |
229 | 229 | "tauri-cli": { |
230 | | - "path": "./tooling/cli", |
| 230 | + "path": "./crates/tauri-cli", |
231 | 231 | "manager": "rust", |
232 | 232 | "dependencies": ["tauri-bundler", "tauri-utils", "tauri-macos-sign"], |
233 | 233 | "postversion": [ |
234 | 234 | "cargo check", |
235 | | - "cargo build --manifest-path ../../core/tauri-config-schema/Cargo.toml" |
| 235 | + "cargo build --manifest-path ../../crates/tauri-schema-generator/Cargo.toml" |
236 | 236 | ] |
237 | 237 | }, |
238 | 238 | "tauri-driver": { |
239 | | - "path": "./tooling/webdriver", |
| 239 | + "path": "./crates/tauri-driver", |
240 | 240 | "manager": "rust", |
241 | 241 | "postversion": "cargo check" |
242 | 242 | } |
|
0 commit comments