-
-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
87 changed files
with
24,497 additions
and
16,331 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 |
---|---|---|
@@ -1,16 +1,11 @@ | ||
# Contributing | ||
|
||
Please give [Chris a holler on Bitbucket](https://bitbucket.org/klembot) if you | ||
Please [open a GitHub issue](https://github.com/klembot/twinejs/issues) if you | ||
have a feature you would like to add or a change you'd like to make to existing | ||
functionality, so we can come to agreement on the change itself before you | ||
spend time writing code. Bugfixes don't require discussion, though -- we can | ||
hash things out in the comments of your pull request as needed. | ||
functionality, so we can come to agreement on the change itself before you spend | ||
time writing code. Bugfixes don't require discussion, though. We can hash things | ||
out in the comments of your pull request as needed. | ||
|
||
Pull requests should be accompanied by [Selenium IDE | ||
tests](http://docs.seleniumhq.org/projects/ide/) where possible; there are some | ||
things related to uploaded or downloaded files that Selenium isn't able to | ||
test. If you're adding a new JavaScript file, please make sure it has ["use | ||
strict";]() at the top, and passes the `grunt jslint` task, and that methods | ||
and classes are documented properly (we use | ||
[YUIDoc](https://yui.github.io/yuidoc/syntax/) -- use `grunt doc` to regenerate | ||
documentation). | ||
Pull requests adding code should be accompanied by [Jest unit | ||
tests](https://jestjs.io/) where possible. Your code should also pass the `npm | ||
run lint` task. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"directories": {"output": "dist/electron"}, | ||
"forceCodeSigning": false, | ||
"linux": { | ||
"target": "zip" | ||
}, | ||
"mac": { | ||
"icon": "icons/app.icns", | ||
"target": "dmg" | ||
}, | ||
"nsis": { | ||
"oneClick": false, | ||
"allowToChangeInstallationDirectory": true | ||
}, | ||
"win": { | ||
"icon": "icons/app.ico", | ||
"target": "nsis" | ||
} | ||
} |
File renamed without changes.
Binary file not shown.
File renamed without changes
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,6 @@ | ||
module.exports = { | ||
moduleNameMapper: { | ||
'\\.html$': 'identity-obj-proxy', | ||
'\\.less$': 'identity-obj-proxy' | ||
} | ||
}; |
Oops, something went wrong.