Skip to content

Commit 67a092c

Browse files
committed
node compile branch
1 parent 810870a commit 67a092c

File tree

1,846 files changed

+42609
-77449
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,846 files changed

+42609
-77449
lines changed

.gitignore

100644100755
Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,2 @@
1-
release/
2-
dist/
3-
logs/
4-
5-
Unsaved\ Document*
1+
node_modules
62
.DS_Store
7-
*.swp
8-
*~
9-
*.pyc

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

Gruntfile.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = function( grunt ) {
2+
"use strict";
3+
grunt.initConfig({
4+
pkg: grunt.file.readJSON( "package.json" ),
5+
jshint: {
6+
options: {
7+
browser: true,
8+
globals: {
9+
window: true,
10+
document: true
11+
},
12+
"-W054": true, // new Function() warning
13+
"-W079": true // var redefinition warning
14+
},
15+
files: [
16+
"./*.js",
17+
"./lib/**/*.js",
18+
"./src/**/*.js",
19+
"!./processing.js",
20+
"!./processing.min.js"
21+
]
22+
}
23+
});
24+
grunt.loadNpmTasks( "grunt-contrib-jshint" );
25+
grunt.registerTask( "default", [ "jshint" ]);
26+
};

Makefile

Lines changed: 0 additions & 230 deletions
This file was deleted.

0 commit comments

Comments
 (0)