Skip to content

Commit

Permalink
Merge pull request #1714 from gruntjs/release-1.2.0
Browse files Browse the repository at this point in the history
Release v1.2.0
  • Loading branch information
vladikoff committed Jul 3, 2020
2 parents 0d23eff + 64a3cf4 commit 27bc5d9
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
node_modules
.npm-debug.log
package-lock.json
tmp
20 changes: 20 additions & 0 deletions CHANGELOG
@@ -1,3 +1,23 @@
v1.2.0
date: 2020-07-03
changes:
- Allow usage of grunt plugins that are located in any location that
is visible to Node.js and NPM, instead of node_modules directly
inside package that have a dev dependency to these plugins.
(PR: https://github.com/gruntjs/grunt/pull/1677)
- Removed coffeescript from dependencies. To ease transition, if
coffeescript is still around, Grunt will attempt to load it.
If it is not, and the user loads a CoffeeScript file,
Grunt will print a useful error indicating that the
coffeescript package should be installed as a dev dependency.
This is considerably more user-friendly than dropping the require entirely,
but doing so is feasible with the latest grunt-cli as users
may simply use grunt --require coffeescript/register.
(PR: https://github.com/gruntjs/grunt/pull/1675)
- Exposes Grunt Option keys for ease of use.
(PR: https://github.com/gruntjs/grunt/pull/1570)
- Avoiding infinite loop on very long command names.
(PR: https://github.com/gruntjs/grunt/pull/1697)
v1.1.0
date: 2020-03-16
changes:
Expand Down
22 changes: 11 additions & 11 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "grunt",
"description": "The JavaScript Task Runner",
"version": "1.1.0",
"version": "1.2.0",
"author": "Grunt Development Team (https://gruntjs.com/development-team)",
"homepage": "https://gruntjs.com/",
"repository": "https://github.com/gruntjs/grunt.git",
Expand Down Expand Up @@ -37,27 +37,27 @@
"tool"
],
"dependencies": {
"dateformat": "~1.0.12",
"dateformat": "~3.0.3",
"eventemitter2": "~0.4.13",
"exit": "~0.1.1",
"exit": "~0.1.2",
"findup-sync": "~0.3.0",
"glob": "~7.0.0",
"grunt-cli": "~1.2.0",
"glob": "~7.1.6",
"grunt-cli": "~1.3.2",
"grunt-known-options": "~1.1.0",
"grunt-legacy-log": "~2.0.0",
"grunt-legacy-util": "~1.1.1",
"iconv-lite": "~0.4.13",
"js-yaml": "~3.13.1",
"minimatch": "~3.0.2",
"mkdirp": "~1.0.3",
"js-yaml": "~3.14.0",
"minimatch": "~3.0.4",
"mkdirp": "~1.0.4",
"nopt": "~3.0.6",
"path-is-absolute": "~1.0.0",
"rimraf": "~2.6.2"
"path-is-absolute": "~2.0.0",
"rimraf": "~3.0.2"
},
"devDependencies": {
"difflet": "~1.0.1",
"eslint-config-grunt": "~1.0.1",
"grunt-contrib-nodeunit": "~2.0.0",
"grunt-contrib-nodeunit": "~2.1.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-eslint": "~18.1.0",
"temporary": "~0.0.4",
Expand Down

0 comments on commit 27bc5d9

Please sign in to comment.