-
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.
Bump react-dnd-html5-backend from 15.1.3 to 16.0.1 (#1052)
* Bump react-dnd-html5-backend from 15.1.3 to 16.0.1 Bumps [react-dnd-html5-backend](https://github.com/react-dnd/react-dnd) from 15.1.3 to 16.0.1. - [Release notes](https://github.com/react-dnd/react-dnd/releases) - [Changelog](https://github.com/react-dnd/react-dnd/blob/main/CHANGELOG.md) - [Commits](https://github.com/react-dnd/react-dnd/commits) --- updated-dependencies: - dependency-name: react-dnd-html5-backend dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Remove deprecated moduleNameMapper entries react-dnd-html5-backend and react-dnd-touch-backend * Migrate forge.config.json to forge.config.ts format per electron/forge#3012 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicholas Nelson <nelsonni@oregonstate.edu>
- Loading branch information
1 parent
39e6d30
commit 052df08
Showing
5 changed files
with
161 additions
and
115 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import MakerDeb from '@electron-forge/maker-deb'; | ||
import MakerDMG from '@electron-forge/maker-dmg'; | ||
import MakerRpm from '@electron-forge/maker-rpm'; | ||
import MakerSquirrel from '@electron-forge/maker-squirrel'; | ||
import { ForgeConfig } from '@electron-forge/shared-types'; | ||
|
||
const config: ForgeConfig = { | ||
packagerConfig: { | ||
asar: true, | ||
executableName: 'synectic', | ||
icon: 'src/assets/icon/icon' | ||
}, | ||
makers: [ | ||
new MakerSquirrel({ | ||
name: 'Synectic', | ||
setupIcon: 'src/assets/icon/icon.ico' | ||
}), | ||
new MakerDMG({ | ||
icon: 'src/assets/icon/icon.icns', | ||
format: 'ULFO' | ||
}), | ||
new MakerDeb({ | ||
options: { | ||
maintainer: 'Nicholas Nelson', | ||
homepage: 'https://github.com/EPICLab/synectic', | ||
categories: [ | ||
'Development' | ||
], | ||
description: 'Research prototype IDE designed for human cognition and spatial interactions' | ||
} | ||
}), | ||
new MakerRpm({ | ||
options: { | ||
homepage: 'https://github.com/EPICLab/synectic', | ||
categories: [ | ||
'Development' | ||
], | ||
description: 'Research prototype IDE designed for human cognition and spatial interactions' | ||
} | ||
}) | ||
], | ||
plugins: [ | ||
{ | ||
name: '@electron-forge/plugin-webpack', | ||
config: { | ||
mainConfig: './webpack.main.config.js', | ||
devContentSecurityPolicy: "default-src 'self' 'unsafe-inline' data:; script-src 'self' 'unsafe-eval' 'unsafe-inline' data:; worker-src * data: 'unsafe-eval' 'unsafe-inline' blob:", | ||
renderer: { | ||
config: './webpack.renderer.config.js', | ||
nodeIntegration: true, | ||
entryPoints: [{ | ||
html: './src/index.html', | ||
js: './src/app.tsx', | ||
name: 'main_window' | ||
}] | ||
} | ||
} | ||
} | ||
] | ||
}; | ||
|
||
export default config; |
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
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
Oops, something went wrong.