You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,4 +97,5 @@ grunt.initConfig({
97
97
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
98
98
99
99
## Release History
100
+
2.0.0 Plovr v4.1.1 add sourcemap path and naming other functionality for create_source_map
Copy file name to clipboardExpand all lines: tasks/plovr_extended.js
+42-27Lines changed: 42 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,18 @@
8
8
9
9
'use strict';
10
10
11
-
module.exports=function(grunt){
11
+
module.exports=function(grunt){
12
12
13
13
varshell=require('shelljs'),
14
14
path=require('path');
15
15
16
-
grunt.registerMultiTask('plovr_extended','Grunt plugin wrapper for google closure tool plovr - includes all Features without the need of an external config File for Plovr',function(){
16
+
grunt.registerMultiTask('plovr_extended','Grunt plugin wrapper for google closure tool plovr - includes all Features without the need of an external config File for Plovr',function(){
17
17
18
18
// config filename - check if file already exists - if yes: delete them first
19
19
varconfigfilename='plovr.config.js';
20
20
21
-
if(grunt.file.exists(configfilename)){
21
+
if(grunt.file.exists(configfilename))
22
+
{
22
23
grunt.file.delete(configfilename);
23
24
}
24
25
@@ -54,10 +55,14 @@ module.exports = function (grunt) {
0 commit comments