Skip to content

Commit

Permalink
chore: loopline-systems -> electron-userland
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Mar 23, 2016
1 parent 0265db9 commit 5eea750
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ We strongly recommend to use **two** package.json files (it is not required, you
In the `app` directory. *Only this directory is distributed with real application.*

Why the two package.json structure is ideal and how it solves a lot of issues
([#39](https://github.com/loopline-systems/electron-builder/issues/39),
[#182](https://github.com/loopline-systems/electron-builder/issues/182),
[#230](https://github.com/loopline-systems/electron-builder/issues/230))?
([#39](https://github.com/electron-userland/electron-builder/issues/39),
[#182](https://github.com/electron-userland/electron-builder/issues/182),
[#230](https://github.com/electron-userland/electron-builder/issues/230))?

1. Native npm modules (those written in C, not JavaScript) need to be compiled, and here we have two different compilation targets for them. Those used in application need to be compiled against electron runtime, and all `devDependencies` need to be compiled against your locally installed node.js. Thanks to having two files this is trivial.
2. When you package the app for distribution there is no need to add up to size of the app with your `devDependencies`. Here those are always not included (because reside outside the `app` directory).
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/loopline-systems/electron-builder.git"
"url": "https://github.com/electron-userland/electron-builder.git"
},
"engines": {
"node": ">=0.4.0"
Expand All @@ -49,12 +49,12 @@
],
"author": "Stefan Judis",
"license": "MIT",
"bugs": "https://github.com/loopline-systems/electron-builder/issues",
"homepage": "https://github.com/loopline-systems/electron-builder",
"bugs": "https://github.com/electron-userland/electron-builder/issues",
"homepage": "https://github.com/electron-userland/electron-builder",
"dependencies": {
"bluebird": "^3.3.4",
"command-line-args": "^2.1.6",
"electron-packager-tf": "^5.2.4-beta.0",
"electron-packager-tf": "^5.2.4-beta.1",
"electron-winstaller-fixed": "^2.0.6-beta.1",
"fs-extra": "^0.26.7",
"fs-extra-p": "^0.1.0",
Expand Down Expand Up @@ -84,10 +84,10 @@
"semantic-release": "^4.3.5",
"should": "^8.2.2",
"ts-babel": "^0.6.1",
"tsconfig-glob": "^0.4.1",
"tsconfig-glob": "^0.4.2",
"tslint": "next",
"typescript": "^1.9.0-dev.20160315",
"validate-commit-msg": "^2.4.0"
"validate-commit-msg": "^2.4.1"
},
"babel": {
"plugins": [
Expand Down
2 changes: 1 addition & 1 deletion src/build-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if (args.help) {
const version = process.env.npm_package_version || JSON.parse(readFileSync(path.join(__dirname, "..", "package.json"), "utf8")).version
console.log(cli.getUsage({
title: "electron-builder " + version,
footer: "Project home: [underline]{https://github.com/loopline-systems/electron-builder}"
footer: "Project home: [underline]{https://github.com/electron-userland/electron-builder}"
}))
}
else {
Expand Down
2 changes: 1 addition & 1 deletion src/errorMessages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const authorEmailIsMissed = `Please specify author 'email' in the applica
See https://docs.npmjs.com/files/package.json#people-fields-author-contributors
It is required to set Linux .deb package maintainer. Or you can set maintainer in the custom linux options.
(see https://github.com/loopline-systems/electron-builder#distributable-format-configuration).
(see https://github.com/electron-userland/electron-builder#distributable-format-configuration).
`

export const buildInAppSpecified = `'build' in the application package.json ('%s') is not supported since 3.0 anymore
Expand Down
2 changes: 1 addition & 1 deletion src/winPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default class WinPackager extends PlatformPackager<WinBuildOptions> {
}

if (!iconUrl) {
throw new Error("iconUrl is not specified, please see https://github.com/loopline-systems/electron-builder#in-short")
throw new Error("iconUrl is not specified, please see https://github.com/electron-userland/electron-builder#in-short")
}
}
}
Expand Down

0 comments on commit 5eea750

Please sign in to comment.