Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-global-config

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-global-config - npm Package Compare versions

Comparing version 0.0.1 to 0.1.0

2

package.json
{
"name": "grunt-global-config",
"description": "Create a global config object from json config",
"version": "0.0.1",
"version": "0.1.0",
"author": "vanetix <matmcfarland@gmail.com>",

@@ -6,0 +6,0 @@ "main": "Gruntfile.js",

@@ -37,4 +37,6 @@ # grunt-global-config [![Build Status](https://travis-ci.org/vanetix/grunt-global-config.png?branch=master)](https://travis-ci.org/vanetix/grunt-global-config)

```
Note: You can also use templates in your config.json, i.e. `"version": "<%= pkg.version %>`.
## Release History
- 0.1.0 - Ability to use grunt templates. Thanks [ataube](http://www.github.com/ataube)!
- 0.0.1 - Initial release

@@ -41,0 +43,0 @@

@@ -38,3 +38,4 @@ /*

.forEach(function(p) {
var j = grunt.file.readJSON(p);
var f = grunt.file.read(p);
var j = JSON.parse(grunt.config.process(f));

@@ -41,0 +42,0 @@ c += opts.namespace + ' = ' + JSON.stringify(j) + ';' + grunt.util.linefeed;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc