Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

grunt-peg

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-peg - npm Package Compare versions

Comparing version
1.0.0
to
1.1.0
+8
-0
CHANGES.md
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"
}
}
}

@@ -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/

@@ -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