fix: cta dist publish (#1493)

This commit is contained in:
Jacob Bolda 2021-04-14 16:57:47 -05:00 committed by GitHub
parent 850a99a576
commit 414f9a78c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
"create-tauri-app": patch
---
CTA was missing the `files` property in the package.json which mean that the `dist` directory was not published and used.

View File

@ -15,6 +15,11 @@
"Tauri Team <team@tauri-apps.org> (https://tauri.studio)",
"Jacob Bolda <me@jacobbolda.com> (https://www.jacobbolda.com)"
],
"main": "bin/create-tauri-app.js",
"files": [
"bin",
"dist"
],
"scripts": {
"create-tauri-app": "create-tauri-app",
"build": "rollup --config",