diff --git a/.gitignore b/.gitignore index 3d3bc0503..5533395f3 100644 --- a/.gitignore +++ b/.gitignore @@ -62,4 +62,5 @@ package-lock.json src-tauri -test/jest/tmp \ No newline at end of file +test/jest/tmp +/tauri.conf.js \ No newline at end of file diff --git a/.npmignore b/.npmignore index 9b1c5189d..f4e533e14 100644 --- a/.npmignore +++ b/.npmignore @@ -7,4 +7,5 @@ node_modules .idea SECURITY.md -src-tauri \ No newline at end of file +src-tauri +/tauri.conf.js \ No newline at end of file diff --git a/lib/rust/Cargo.toml b/lib/rust/Cargo.toml index 3c5b2900f..b6e1be44d 100644 --- a/lib/rust/Cargo.toml +++ b/lib/rust/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] # tauri-ui = { path = "../../bindings/rust" } -web-view = "0.5.3" +web-view = "0.5.4" serde_json = "1.0.41" serde = "1.0" serde_derive = "1.0" diff --git a/mode/helpers/app-paths.js b/mode/helpers/app-paths.js index a158cc398..c97948ccb 100644 --- a/mode/helpers/app-paths.js +++ b/mode/helpers/app-paths.js @@ -19,7 +19,6 @@ function getAppDir () { } // just return the current directory - console.log(dir) return process.cwd() } diff --git a/package.json b/package.json index a21396c38..b5004d32b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/tauri", - "version": "0.0.1-utility.15", + "version": "0.0.1-utility.16", "description": "Multi-binding collection of libraries and templates for building Tauri apps", "bin": { "tauri": "./mode/bin/tauri.js" diff --git a/test/jest/__tests__/tauricon.spec.js b/test/jest/__tests__/tauricon.spec.js index a87f507ae..9dc684487 100644 --- a/test/jest/__tests__/tauricon.spec.js +++ b/test/jest/__tests__/tauricon.spec.js @@ -50,6 +50,7 @@ describe('[CLI] tauri-icon builder', () => { }) it('makes a set of icons with zopfli', async () => { + jest.setTimeout(120000) const valid = await tauricon.make('test/jest/fixtures/tauri-logo.png', 'test/jest/tmp/zopfli', 'zopfli') expect(valid).toBe(true) })