This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from goosewobbler/0.1.0
- Loading branch information
Showing
15 changed files
with
321 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
module.exports = { | ||
asar: true, | ||
appId: 'com.dj-helper.app', | ||
copyright: `Copyright © ${new Date().getFullYear()} Goosewobbler`, | ||
productName: 'DJ Helper', | ||
artifactName: '${name}-${version}-${os}-${arch}.${ext}', | ||
afterSign: './scripts/notarize.js', | ||
files: ['bundle/**/*', 'build/**/*'], | ||
mac: { | ||
category: 'public.app-category.music', | ||
icon: 'build/icon.icns', | ||
hardenedRuntime: true, | ||
entitlements: './build/entitlements.mac.plist', | ||
entitlementsInherit: './build/entitlements.mac.plist', | ||
}, | ||
win: { | ||
target: 'nsis', | ||
icon: 'build/icon.ico', | ||
}, | ||
nsis: { | ||
deleteAppDataOnUninstall: true, | ||
}, | ||
linux: { | ||
category: 'Audio', | ||
icon: 'build/icon/', | ||
desktop: { | ||
StartupWMClass: 'dj helper', | ||
}, | ||
target: ['AppImage'], | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "dj-helper", | ||
"description": "A tool for constructing DJ sets", | ||
"version": "0.0.16", | ||
"version": "0.1.0", | ||
"author": "Sam Maister <[email protected]>", | ||
"license": "AGPL-3.0-or-later", | ||
"main": "./bundle/main.prod.js", | ||
|
@@ -13,7 +13,7 @@ | |
"init": "pnpm install", | ||
"preinstall": "npx only-allow pnpm", | ||
"check-types": "tsc --noEmit", | ||
"clean": "cross-env rm -rf pnpm-lock.yaml ./node_modules ./bundle ./dist", | ||
"clean": "cross-env rm -rf pnpm-lock.yaml ./node_modules ./bundle ./dist", | ||
"clean:build": "cross-env rm -rf ./bundle ./dist", | ||
"clean:bundle": "cross-env rm -rf ./bundle", | ||
"dev": "pnpm clean:build && pnpm dev:bundle:main && pnpm dev:bundle:preload && cross-env pnpm dev:start-server", | ||
|
@@ -62,6 +62,7 @@ | |
"@babel/register": "^7.16.5", | ||
"@goosewobbler/spectron": "^17.0.0-alpha3", | ||
"@headlessui/react": "^1.4.2", | ||
"@heroicons/react": "^1.0.5", | ||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4", | ||
"@redux-offline/redux-offline": "^2.6.0", | ||
"@reduxjs/toolkit": "^1.7.1", | ||
|
@@ -72,7 +73,7 @@ | |
"@testing-library/webdriverio": "^3.0.5", | ||
"@types/jest": "^27.0.3", | ||
"@types/mocha": "^9.0.0", | ||
"@types/node": "^17.0.4", | ||
"@types/node": "^17.0.5", | ||
"@types/react": "^17.0.38", | ||
"@types/react-dom": "^17.0.11", | ||
"@types/react-redux": "^7.1.21", | ||
|
@@ -110,7 +111,7 @@ | |
"eslint-import-resolver-webpack": "^0.13.2", | ||
"eslint-plugin-import": "^2.25.3", | ||
"eslint-plugin-jest": "^25.3.0", | ||
"eslint-plugin-jest-dom": "^3.9.2", | ||
"eslint-plugin-jest-dom": "^3.9.4", | ||
"eslint-plugin-jsx-a11y": "^6.5.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^6.0.0", | ||
|
Oops, something went wrong.