forked from kofifus/firepad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
136 lines (133 loc) · 3.81 KB
/
Gruntfile.js
File metadata and controls
136 lines (133 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
module.exports = function (grunt) {
grunt.initConfig({
coffeelint: {
app: ['lib/*.coffee'],
options: {
max_line_length: {
level: 'ignore'
},
line_endings: {
value: "unix",
level: "error"
},
no_trailing_semicolons: {
level: "ignore"
}
}
},
coffee: {
compile: {
files: [{
expand: true, // Enable dynamic expansion.
cwd: 'lib/', // Src matches are relative to this path.
src: ['**/*.coffee'], // Actual pattern(s) to match.
dest: 'lib/', // Destination path prefix.
ext: '.js' // Dest filepaths will have this extension.
}],
options: {
bare: true // Skip surrounding IIFE in compiled output.
}
}
},
concat: {
"firepadjs": {
options: {
banner: [
'/*!',
' * Firepad is an open-source, collaborative code and text editor. It was designed',
' * to be embedded inside larger applications. Since it uses Firebase as a backend,',
' * it requires no server-side code and can be added to any web app simply by',
' * including a couple JavaScript files.',
' *',
' * Firepad 0.0.0',
' * http://www.firepad.io/',
' * License: MIT',
' * Copyright: 2014 Firebase',
' * With code from ot.js (Copyright 2012-2013 Tim Baumann)',
' */\n\n',
'var Firepad = (function () {\n\n'
].join('\n'),
footer: "\nreturn firepad.Firepad; \n\n})();"
},
"src": [
"lib/utils.js",
"lib/span.js",
"lib/text-op.js",
"lib/text-operation.js",
"lib/annotation-list.js",
"lib/cursor.js",
"lib/firebase-adapter.js",
"lib/rich-text-toolbar.js",
"lib/wrapped-operation.js",
"lib/undo-manager.js",
"lib/client.js",
"lib/editor-client.js",
"lib/ace-adapter.js",
"lib/constants.js",
"lib/entity-manager.js",
"lib/entity.js",
"lib/rich-text-codemirror.js",
"lib/rich-text-codemirror-adapter.js",
"lib/formatting.js",
"lib/text.js",
"lib/line-formatting.js",
"lib/line.js",
"lib/parse-html.js",
"lib/serialize-html.js",
"lib/text-pieces-to-inserts.js",
"lib/headless.js",
"lib/firepad.js"
],
"dest": "dist/firepad.js"
}
},
uglify: {
options: {
preserveComments: "some"
},
"firepad-min-js": {
src: "dist/firepad.js",
dest: "dist/firepad.min.js"
}
},
copy: {
toBuild: {
files: [
{
src: 'font/firepad.eot',
dest: 'dist/firepad.eot'
},
{
src: 'lib/firepad.css',
dest: 'dist/firepad.css'
},
]
}
},
watch: {
files: ['lib/*.js', 'lib/*.coffee', 'lib/*.css'],
tasks: ['build']
},
// Unit tests
karma: {
options: {
configFile: 'test/karma.conf.js',
},
unit: {
autowatch: false,
singleRun: true
}
}
});
grunt.loadNpmTasks('grunt-coffeelint');
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
// Tasks
grunt.registerTask('test', ['karma:unit']);
grunt.registerTask('build', ['coffeelint', 'coffee', 'concat', 'uglify', 'copy'])
grunt.registerTask('default', ['build', 'test']);
};