forked from nusmodifications/nusmods
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP rewrite: CoffeeScript to JavaScript, use Backbone, Lo-Dash, Requi…
…reJS, Yeoman 1.0 beta
- Loading branch information
ahbeng
committed
Mar 5, 2013
1 parent
cf4dcec
commit a6a19d3
Showing
96 changed files
with
270,823 additions
and
10,003 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "app/components" | ||
} |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
* text=auto |
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,9 +1,6 @@ | ||
.DS_Store | ||
cache | ||
css/*.css | ||
dist | ||
js/*.js | ||
json | ||
node_modules | ||
tasks/crawl.js | ||
tasks/jsify.js | ||
dist | ||
.tmp | ||
.sass-cache | ||
app/components | ||
cache |
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,26 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"es5": true, | ||
"esnext": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 2, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"regexp": true, | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"globals": { | ||
"define": false | ||
}, | ||
"maxlen": 80 | ||
} |
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,335 @@ | ||
// Generated on 2013-03-05 using generator-webapp 0.1.5 | ||
'use strict'; | ||
var lrSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet; | ||
var mountFolder = function (connect, dir) { | ||
return connect.static(require('path').resolve(dir)); | ||
}; | ||
|
||
// # Globbing | ||
// for performance reasons we're only matching one level down: | ||
// 'test/spec/{,*/}*.js' | ||
// use this if you want to match all subfolders: | ||
// 'test/spec/**/*.js' | ||
|
||
module.exports = function (grunt) { | ||
// load all grunt tasks | ||
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | ||
|
||
// configurable paths | ||
var yeomanConfig = { | ||
app: 'app', | ||
dist: 'dist' | ||
}; | ||
|
||
grunt.initConfig({ | ||
yeoman: yeomanConfig, | ||
watch: { | ||
coffee: { | ||
files: ['<%= yeoman.app %>/scripts/{,*/}*.coffee'], | ||
tasks: ['coffee:dist'] | ||
}, | ||
coffeeTest: { | ||
files: ['test/spec/{,*/}*.coffee'], | ||
tasks: ['coffee:test'] | ||
}, | ||
compass: { | ||
files: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'], | ||
tasks: ['compass'] | ||
}, | ||
livereload: { | ||
files: [ | ||
'<%= yeoman.app %>/*.html', | ||
'{.tmp,<%= yeoman.app %>}/styles/{,*/}*.css', | ||
'{.tmp,<%= yeoman.app %>}/scripts/{,*/}*.js', | ||
'<%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,webp}' | ||
], | ||
tasks: ['livereload'] | ||
} | ||
}, | ||
connect: { | ||
options: { | ||
port: 9000, | ||
// change this to '0.0.0.0' to access the server from outside | ||
hostname: 'localhost' | ||
}, | ||
livereload: { | ||
options: { | ||
middleware: function (connect) { | ||
return [ | ||
lrSnippet, | ||
mountFolder(connect, '.tmp'), | ||
mountFolder(connect, 'app') | ||
]; | ||
} | ||
} | ||
}, | ||
test: { | ||
options: { | ||
middleware: function (connect) { | ||
return [ | ||
mountFolder(connect, '.tmp'), | ||
mountFolder(connect, 'test') | ||
]; | ||
} | ||
} | ||
}, | ||
dist: { | ||
options: { | ||
middleware: function (connect) { | ||
return [ | ||
mountFolder(connect, 'dist') | ||
]; | ||
} | ||
} | ||
} | ||
}, | ||
open: { | ||
server: { | ||
path: 'http://localhost:<%= connect.options.port %>' | ||
} | ||
}, | ||
clean: { | ||
dist: ['.tmp', '<%= yeoman.dist %>/*'], | ||
server: '.tmp' | ||
}, | ||
jshint: { | ||
options: { | ||
jshintrc: '.jshintrc' | ||
}, | ||
all: [ | ||
'Gruntfile.js', | ||
'<%= yeoman.app %>/scripts/{,*/}*.js', | ||
'!<%= yeoman.app %>/scripts/vendor/*', | ||
'test/spec/{,*/}*.js' | ||
] | ||
}, | ||
mocha: { | ||
all: { | ||
options: { | ||
run: true, | ||
urls: ['http://localhost:<%= connect.options.port %>/index.html'] | ||
} | ||
} | ||
}, | ||
coffee: { | ||
dist: { | ||
files: [{ | ||
// rather than compiling multiple files here you should | ||
// require them into your main .coffee file | ||
expand: true, | ||
cwd: '<%= yeoman.app %>/scripts', | ||
src: '*.coffee', | ||
dest: '.tmp/scripts', | ||
ext: '.js' | ||
}] | ||
}, | ||
test: { | ||
files: [{ | ||
expand: true, | ||
cwd: '.tmp/spec', | ||
src: '*.coffee', | ||
dest: 'test/spec' | ||
}] | ||
} | ||
}, | ||
compass: { | ||
options: { | ||
sassDir: '<%= yeoman.app %>/styles', | ||
cssDir: '.tmp/styles', | ||
imagesDir: '<%= yeoman.app %>/images', | ||
javascriptsDir: '<%= yeoman.app %>/scripts', | ||
fontsDir: '<%= yeoman.app %>/styles/fonts', | ||
importPath: 'app/components', | ||
relativeAssets: true | ||
}, | ||
dist: {}, | ||
server: { | ||
options: { | ||
debugInfo: true | ||
} | ||
} | ||
}, | ||
// not used since Uglify task does concat, | ||
// but still available if needed | ||
/*concat: { | ||
dist: {} | ||
},*/ | ||
requirejs: { | ||
dist: { | ||
// Options: https://github.com/jrburke/r.js/blob/master/build/example.build.js | ||
options: { | ||
// `name` and `out` is set by grunt-usemin | ||
baseUrl: 'app/scripts', | ||
optimize: 'none', | ||
// TODO: Figure out how to make sourcemaps work with grunt-usemin | ||
// https://github.com/yeoman/grunt-usemin/issues/30 | ||
//generateSourceMaps: true, | ||
// required to support SourceMaps | ||
// http://requirejs.org/docs/errors.html#sourcemapcomments | ||
preserveLicenseComments: false, | ||
useStrict: true, | ||
wrap: true, | ||
//uglify2: {} // https://github.com/mishoo/UglifyJS2 | ||
paths: { | ||
timetable_data: "empty:" | ||
} | ||
} | ||
} | ||
}, | ||
useminPrepare: { | ||
html: '<%= yeoman.app %>/index.html', | ||
options: { | ||
dest: '<%= yeoman.dist %>' | ||
} | ||
}, | ||
usemin: { | ||
html: ['<%= yeoman.dist %>/{,*/}*.html'], | ||
css: ['<%= yeoman.dist %>/styles/{,*/}*.css'], | ||
options: { | ||
dirs: ['<%= yeoman.dist %>'] | ||
} | ||
}, | ||
imagemin: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>/images', | ||
src: '{,*/}*.{png,jpg,jpeg}', | ||
dest: '<%= yeoman.dist %>/images' | ||
}] | ||
} | ||
}, | ||
cssmin: { | ||
dist: { | ||
files: { | ||
'<%= yeoman.dist %>/styles/main.css': [ | ||
'.tmp/styles/{,*/}*.css', | ||
'<%= yeoman.app %>/styles/{,*/}*.css' | ||
] | ||
} | ||
} | ||
}, | ||
htmlmin: { | ||
dist: { | ||
options: { | ||
/*removeCommentsFromCDATA: true, | ||
// https://github.com/yeoman/grunt-usemin/issues/44 | ||
//collapseWhitespace: true, | ||
collapseBooleanAttributes: true, | ||
removeAttributeQuotes: true, | ||
removeRedundantAttributes: true, | ||
useShortDoctype: true, | ||
removeEmptyAttributes: true, | ||
removeOptionalTags: true*/ | ||
}, | ||
files: [{ | ||
expand: true, | ||
cwd: '<%= yeoman.app %>', | ||
src: '*.html', | ||
dest: '<%= yeoman.dist %>' | ||
}] | ||
} | ||
}, | ||
copy: { | ||
dist: { | ||
files: [{ | ||
expand: true, | ||
dot: true, | ||
cwd: '<%= yeoman.app %>', | ||
dest: '<%= yeoman.dist %>', | ||
src: [ | ||
'*.{ico,txt}', | ||
'.htaccess', | ||
'scripts/nus_timetable_data.js' | ||
] | ||
}] | ||
} | ||
}, | ||
bower: { | ||
all: { | ||
rjsConfig: '<%= yeoman.app %>/scripts/main.js' | ||
} | ||
}, | ||
crawlNTU: { | ||
academicYear: 2012, | ||
cachePath: 'cache', | ||
dest: 'app/json/ntu_module_info.json', | ||
maxCacheAge: 24 * 60 * 60, // in seconds | ||
maxConcurrentFiles: 64, | ||
maxConcurrentSockets: 8, | ||
refresh: false, | ||
semester: 2 | ||
}, | ||
crawlNUS: { | ||
academicYear: 2012, | ||
cachePath: 'cache', | ||
dest: 'app/json/nus_module_info.json', | ||
maxCacheAge: 24 * 60 * 60, // in seconds | ||
maxConcurrentFiles: 64, | ||
maxConcurrentSockets: 8, | ||
refresh: false, | ||
semester: 2 | ||
}, | ||
download: { | ||
'app/json/ntu_module_info.json': 'http://nusmods.com/json/ntu_module_info.json', | ||
'app/json/nus_module_info.json': 'http://nusmods.com/json/nus_module_info.json' | ||
}, | ||
jsifyNTU: { | ||
destModuleFinder: 'app/scripts/ntu_module_data.js', | ||
destTimetable: 'app/scripts/ntu_timetable_data.js', | ||
src: 'app/json/ntu_module_info.json' | ||
}, | ||
jsifyNUS: { | ||
destModuleFinder: 'app/scripts/nus_module_data.js', | ||
destTimetable: 'app/scripts/nus_timetable_data.js', | ||
src: 'app/json/nus_module_info.json' | ||
} | ||
}); | ||
|
||
grunt.renameTask('regarde', 'watch'); | ||
|
||
grunt.registerTask('server', function (target) { | ||
if (target === 'dist') { | ||
return grunt.task.run(['build', 'open', 'connect:dist:keepalive']); | ||
} | ||
|
||
grunt.task.run([ | ||
'clean:server', | ||
'coffee:dist', | ||
'compass:server', | ||
'livereload-start', | ||
'connect:livereload', | ||
'open', | ||
'watch' | ||
]); | ||
}); | ||
|
||
grunt.registerTask('test', [ | ||
'clean:server', | ||
'coffee', | ||
'compass', | ||
'connect:test', | ||
'mocha' | ||
]); | ||
|
||
grunt.registerTask('build', [ | ||
'clean:dist', | ||
'coffee', | ||
'compass:dist', | ||
'useminPrepare', | ||
'requirejs', | ||
'imagemin', | ||
'htmlmin', | ||
'concat', | ||
'cssmin', | ||
'uglify', | ||
'copy', | ||
'usemin' | ||
]); | ||
|
||
grunt.registerTask('default', [ | ||
// 'jshint', | ||
// 'test', | ||
'build' | ||
]); | ||
}; |
Binary file not shown.
Oops, something went wrong.