Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
20191214 - Updating deps and reducing app size by ignoring un-needed …
Browse files Browse the repository at this point in the history
…ffmpeg binariy-versions while building (see #22)
  • Loading branch information
yafp committed Dec 14, 2019
1 parent fa8a04d commit 667e56e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "media-dupes",
"productName": "media-dupes",
"desktopName": "media-dupes.desktop",
"version": "0.2.0",
"version": "0.3.20191214",
"description": "a minimal media duplicator for common media services like youtube",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -57,6 +57,10 @@
"asar": false,
"mac": {
"category": "public.app-category.productivity",
"files": [
"!node_modules/ffmpeg-static-electron/bin/linux/*",
"!node_modules/ffmpeg-static-electron/bin/win/*"
],
"artifactName": "${productName}-${version}-mac.${ext}",
"target": [
"dmg"
Expand All @@ -83,6 +87,10 @@
"win": {
"icon": "resources/installer/icon.ico",
"publisherName": "yafp",
"files": [
"!node_modules/ffmpeg-static-electron/bin/linux/*",
"!node_modules/ffmpeg-static-electron/bin/mac/*"
],
"artifactName": "${productName}-${version}-win-${arch}.${ext}",
"target": [
"zip",
Expand All @@ -100,6 +108,10 @@
},
"linux": {
"executableName": "media-dupes",
"files": [
"!node_modules/ffmpeg-static-electron/bin/win/*",
"!node_modules/ffmpeg-static-electron/bin/mac/*"
],
"artifactName": "${productName}-${version}-linux-${arch}.${ext}",
"description": "a minimal media duplicator for common media services like youtube",
"category": "Network",
Expand Down Expand Up @@ -169,7 +181,7 @@
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^7.1.4",
"electron": "^7.1.5",
"electron-builder": "^21.2.0",
"electron-packager": "^14.1.1",
"eslint": "^6.7.2",
Expand Down

0 comments on commit 667e56e

Please sign in to comment.