Added shortid for server and unique id's for remote

This commit is contained in:
Kasper Rynning-Tønnesen
2015-06-19 19:43:58 +02:00
parent 8b4cb5964d
commit 7e96a1d0dc
19 changed files with 740 additions and 7 deletions

65
server/node_modules/shortid/Gruntfile.js generated vendored Normal file
View File

@@ -0,0 +1,65 @@
'use strict';
module.exports = function (grunt) {
require('time-grunt')(grunt);
grunt.initConfig({
browserify: {
browser: {
src: [ require('./package.json').main ],
dest: './browser/shortid.js'
},
tests: {
src: [
'./test/**/*.test.js'
],
dest: './browser/shortid.test.js'
}
},
open: {
test: {
path: './test/index.html',
app: 'Google Chrome'
}
},
mochaTest: {
notify: {
src: 'test/**/*.test.js',
options: {
reporter: 'spec',
timeout: 50000
}
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'lib/**/*.js',
'tests/*'
]
}
});
require('load-grunt-tasks')(grunt);
grunt.registerTask('build', [
'browserify'
]);
grunt.registerTask('test', [
'jshint',
'mochaTest'
]);
grunt.registerTask('default', [
'build',
'test'
]);
};