+8
-0
| Changes | ||
| ======= | ||
| 1.1.0 | ||
| ----- | ||
| * [Issue #8][issue 8] | ||
| * [Pull Request #9][pull 9] | ||
| 1.0.0 | ||
@@ -27,2 +33,4 @@ ----- | ||
| [grunt]: http://gruntjs.com/ | ||
| [pull 9]: https://github.com/dvberkel/grunt-peg/pull/9 | ||
| [issue 8]: https://github.com/dvberkel/grunt-peg/issues/8 | ||
| [issue 7]: https://github.com/dvberkel/grunt-peg/issues/7 | ||
@@ -29,0 +37,0 @@ [pull 5]: https://github.com/dvberkel/grunt-peg/pull/5 |
+3
-3
| { | ||
| "name": "grunt-peg", | ||
| "description": "A grunt multi task that generates parsers from PEG grammars.", | ||
| "version": "1.0.0", | ||
| "version": "1.1.0", | ||
| "homepage": "https://github.com/dvberkel/grunt-peg", | ||
@@ -45,4 +45,4 @@ "author": { | ||
| "dependencies": { | ||
| "pegjs": "~0.7.0" | ||
| "pegjs": "~0.8.0" | ||
| } | ||
| } | ||
| } |
+3
-0
@@ -122,2 +122,3 @@ # grunt-peg | ||
| * 2014-01-05 v1.1.0 Support PEG 0.8.0 | ||
| * 2013-08-21 v1.0.0 Remove support for old-style options | ||
@@ -131,4 +132,6 @@ * 2013-07-04 v0.3.0 Adhere to grunt's configuration convention | ||
| * [welwood08][] | ||
| * [mstefaniuk][] | ||
| [welwood08]: https://github.com/welwood08 | ||
| [mstefaniuk]: https://github.com/mstefaniuk | ||
@@ -135,0 +138,0 @@ [Grunt]: http://gruntjs.com/ |
+3
-2
@@ -20,3 +20,4 @@ /* | ||
| var options = this.options({ | ||
| exportVar: 'module.exports' | ||
| exportVar: 'module.exports', | ||
| output: 'source' | ||
| }); | ||
@@ -49,3 +50,3 @@ | ||
| // Save the parser. | ||
| grunt.file.write(f.dest, options.exportVar + ' = ' + parser.toSource() + ';'); | ||
| grunt.file.write(f.dest, options.exportVar + ' = ' + parser + ';'); | ||
@@ -52,0 +53,0 @@ grunt.log.writeln('Parser "' + f.dest + '" generated in ' + time + 'ms.'); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
151
0.67%141
2.17%31096
-6.33%+ Added
- Removed
Updated