Skip to content
This repository has been archived by the owner on Oct 31, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7 from tomasz-oponowicz/develop
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
tomasz-oponowicz authored Nov 9, 2016
2 parents 207472d + a6fa462 commit 7a4360d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
> Obfuscates JavaScript files using amazing [javascript-obfuscator](https://github.com/javascript-obfuscator/javascript-obfuscator).
## Getting Started
This plugin requires Grunt `~0.4.5`
This plugin requires Grunt `>=0.4.5`

If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin and _javascript-obfuscator_ with this command:

Expand Down Expand Up @@ -85,4 +85,5 @@ In lieu of a formal styleguide, take care to maintain the existing coding style.

## Release History

* 2016-11-08   v1.0.0   First release.
* 2016-11-09 / v1.0.1 / Relaxed peer dependencies.
* 2016-11-08 / v1.0.0 / First release.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-javascript-obfuscator",
"description": "Obfuscates JavaScript files.",
"version": "1.0.0",
"description": "Obfuscates JavaScript files using amazing javascript-obfuscator.",
"version": "1.0.1",
"main": "tasks/javascript_obfuscator.js",
"files": ["tasks"],
"homepage": "https://github.com/tomasz-oponowicz/grunt-javascript-obfuscator",
Expand All @@ -24,15 +24,15 @@
"test": "grunt"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt": "^1.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-nodeunit": "^0.3.3",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"javascript-obfuscator": "0.7.2"
},
"peerDependencies": {
"grunt": "~0.4.5",
"grunt": ">=0.4.5",
"javascript-obfuscator": ">=0.7.2"
},
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions test/helper.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

var cp = require("child_process");

exports.callGruntfile = function (filename, whenDoneCallback) {
Expand Down
4 changes: 0 additions & 4 deletions test/javascript_obfuscator_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ var helper = require('./helper');
var grunt = require('grunt');

exports.javascript_obfuscator = {
setUp: function(done) {
done();
},

unknown_file: function(test) {
test.expect(2);

Expand Down

0 comments on commit 7a4360d

Please sign in to comment.