Skip to content

Commit f7dca6b

Browse files
committed
Initial commit
0 parents  commit f7dca6b

23 files changed

Lines changed: 1929 additions & 0 deletions

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Unix-style newlines with a newline ending every file
2+
[*]
3+
end_of_line = lf
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
[*.js]
8+
insert_final_newline = true

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Always use lf line endings
2+
* text=auto eol=lf

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
/build
3+
/node_modules
4+
/codesign.p12
5+
/build.config.js

build.config.example.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const path = require('path');
2+
3+
module.exports = {
4+
appleDeveloperId: 'abc',
5+
appleDeveloperUsername: 'abc',
6+
appleDeveloperPassword: 'abc',
7+
windowsCodesignCertificate: path.resolve(__dirname, 'codesign.p12'),
8+
windowsCodesignCertificatePassword: 'hunter2'
9+
};

0 commit comments

Comments
 (0)