Skip to content

Commit

Permalink
fixed packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
TanninOne committed Oct 27, 2016
1 parent 737f8f4 commit eaacc5c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 5 additions & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nmm2",
"version": "0.1.0",
"version": "0.2.0",
"productName": "Nexus Mod Manager 2 Retribution",
"description": "Nexus Mod Manager 2 Retribution",
"author": "Black Tree Gaming Ltd.",
Expand All @@ -21,13 +21,16 @@
"fs-extra-promise": "^0.4.0",
"i18next": "^3.4.1",
"i18next-node-fs-backend": "^0.1.2",
"icon-extractor": "^1.0.3",
"nexus-api": "file:../lib/js/nexus-api",
"node-7z": "^0.4.0",
"node-ipc": "^8.9.2",
"node-rest-client": "^2.0.1",
"react": "^15.3.0",
"react-addons-css-transition-group": "^15.3.1",
"react-addons-update": "^15.3.1",
"react-bootstrap": "^0.30.2",
"react-contextmenu": "^1.6.3",
"react-dom": "^15.3.0",
"react-fontawesome": "^1.1.0",
"react-i18next": "^1.8.0",
Expand All @@ -44,6 +47,7 @@
"redux-thunk": "^2.1.0",
"redux-watcher": "^0.1.2",
"ref-union": "^1.0.1",
"request": "^2.76.0",
"source-map-support": "^0.4.2",
"string-template": "^1.0.0",
"tmp": "^0.0.29",
Expand Down
Binary file removed build/icon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"appId": "com.nexusmods.nmm2",
"win": {
"target": "squirrel",
"icon": "assets/images/nmm.ico",
"iconUrl": "https://staticdelivery.nexusmods.com/contents/Templates/110/favicon.ico"
},
"extraResources": [
Expand Down Expand Up @@ -98,6 +99,7 @@
"jest-cli": "^15.1.1",
"less": "^2.7.1",
"less-plugin-clean-css": "^1.5.1",
"nexus-api": "file:./lib/js/nexus-api",
"node-7z": "^0.4.0",
"node-ipc": "^8.9.2",
"node-rest-client": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/nexus_integration/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { settingsReducer } from './reducers/settings';
import LoginIcon from './views/LoginIcon';
import Settings from './views/Settings';

import Nexus, { IDownloadURL, IGetModInfoResponse } from '../../../lib/js/nexus-api';
import Nexus, { IDownloadURL, IGetModInfoResponse } from 'nexus-api';

import NXMUrl from './NXMUrl';

Expand Down
4 changes: 2 additions & 2 deletions src/extensions/nexus_integration/views/LoginForm.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Nexus from '../../../../lib/js/nexus-api/lib/Nexus';
import { IValidateKeyResponse } from '../../../../lib/js/nexus-api/lib/types';
import Nexus from 'nexus-api/lib/Nexus';
import { IValidateKeyResponse } from 'nexus-api/lib/types';

import { showDialog } from '../../../actions/notifications';
import { ComponentEx, connect, translate } from '../../../util/ComponentEx';
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/nexus_integration/views/LoginIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Nexus from '../../../../lib/js/nexus-api/lib/Nexus';
import Nexus from 'nexus-api/lib/Nexus';

import { ComponentEx, connect, translate } from '../../../util/ComponentEx';
import Icon from '../../../views/Icon';
Expand Down

0 comments on commit eaacc5c

Please sign in to comment.