Yarn Audit
click to view
\
`
yarn audit v1.22.10
info No lockfile found.
0 vulnerabilities found - Packages audited: 149
Done in 2.14s.
\
`
[1.0.0-beta-rc.0]
- Fixed missing 'App' variant & string promise instead of void promise.
- Update all code files to have our license header.
- JS CLI now downloads prebuilt Rust CLI.
- The
info
command was rewritten in Rust. - The
init
command was rewritten in Rust. - Removed the
no-server
mode, theinliner
, thedev
server proxy and theloadAsset
API. - Revert
tauri create
deletion and shift remaining pieces that weren't deleted tocreate-tauri-app
. - The Tauri API interface is now shipped with the
@tauri-apps/api
package instead of the deprecatedtauri
package.
To use the new API package, delete the oldtauri
from yourpackage.json
and install the new package:
$ yarn remove tauri && yarn add @tauri-apps/api
or$ npm uninstall tauri && npm install @tauri-apps/api
.
And change allimport { someApi } from 'tauri/api
toimport { someApi } from '@tauri-apps/api'
. - The Tauri Node.js CLI package is now
@tauri-apps/cli
. - All the arguments passed after
tauri dev --
are now propagated to the binary. - Eliminate the dead code in cli.js. Also removed some unused dependencies and updated the publish config that we are not publishing the Typescript files (since this is now primarily a CLI).
Yarn Package Publish
\
`
yarn publish v1.22.10
[1/4] Bumping version...
info Current version: 1.0.0-beta-rc.0
[2/4] Logging in...
[3/4] Publishing...
$ yarn build-release
yarn run v1.22.10
$ rimraf ./dist && cross-env NODE_ENV=production webpack
assets by path api/.js 47.5 KiB
asset api/dependency-manager.js 22.1 KiB [emitted] [minimized] (name: api/dependency-manager) 1 related asset
asset api/tauricon.js 15.1 KiB [emitted] [minimized] (name: api/tauricon) 2 related assets
asset api/cli.js 10.3 KiB [emitted] [minimized] (name: api/cli) 1 related asset
assets by path helpers/.js 13.7 KiB
asset helpers/rust-cli.js 7.96 KiB [emitted] [minimized] (name: helpers/rust-cli) 1 related asset
asset helpers/download-cli.js 4.05 KiB [emitted] [minimized] (name: helpers/download-cli) 1 related asset
asset helpers/spawn.js 1.72 KiB [emitted] [minimized] (name: helpers/spawn) 1 related asset
cacheable modules 107 KiB 18 modules
22 modules
webpack 5.31.0 compiled successfully in 5918 ms
Done in 6.75s.
success Published.
[4/4] Revoking token...
info Not revoking login token, specified via config file.
Done in 11.24s.
\
`