Skip to content

Commit e2ff25e

Browse files
committed
Removed difflib.js. Can pull from npm. Update Gruntfile to properly copy files to web.
1 parent 8d3c088 commit e2ff25e

File tree

4 files changed

+5
-412
lines changed

4 files changed

+5
-412
lines changed

Gruntfile.js

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ module.exports = function (grunt) {
5353
concat: {
5454
options : {
5555
process: true,
56+
sourceMap: true,
5657
banner : '<%= conf.banner %>'
5758
},
5859
js: {
@@ -249,6 +250,8 @@ module.exports = function (grunt) {
249250
expand: true,
250251
flatten: true,
251252
src: [
253+
'<%= conf.pkg.name %>.js',
254+
'<%= conf.pkg.name %>.js.map',
252255
'<%= conf.pkg.name %>.min.js',
253256
'<%= conf.pkg.name %>.min.js.map',
254257
'node_modules/d3/d3.js',

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"grunt-shell": "~1.1.1",
5252
"grunt-template-jasmine-istanbul": "~0.3.2",
5353
"load-grunt-tasks": "~3.0.0",
54+
"jsdifflib": "~1.1.0",
5455
"marked": "~0.3.3",
5556
"uglify-js": "2.4.x",
5657
"time-grunt": "~1.0.0"

0 commit comments

Comments
 (0)