Skip to content

Commit 64a3cf4

Browse files
committed
Release v1.2.0
1 parent 0d23eff commit 64a3cf4

File tree

3 files changed

+32
-11
lines changed

3 files changed

+32
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
.npm-debug.log
3+
package-lock.json
34
tmp

CHANGELOG

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
v1.2.0
2+
date: 2020-07-03
3+
changes:
4+
- Allow usage of grunt plugins that are located in any location that
5+
is visible to Node.js and NPM, instead of node_modules directly
6+
inside package that have a dev dependency to these plugins.
7+
(PR: https://github.com/gruntjs/grunt/pull/1677)
8+
- Removed coffeescript from dependencies. To ease transition, if
9+
coffeescript is still around, Grunt will attempt to load it.
10+
If it is not, and the user loads a CoffeeScript file,
11+
Grunt will print a useful error indicating that the
12+
coffeescript package should be installed as a dev dependency.
13+
This is considerably more user-friendly than dropping the require entirely,
14+
but doing so is feasible with the latest grunt-cli as users
15+
may simply use grunt --require coffeescript/register.
16+
(PR: https://github.com/gruntjs/grunt/pull/1675)
17+
- Exposes Grunt Option keys for ease of use.
18+
(PR: https://github.com/gruntjs/grunt/pull/1570)
19+
- Avoiding infinite loop on very long command names.
20+
(PR: https://github.com/gruntjs/grunt/pull/1697)
121
v1.1.0
222
date: 2020-03-16
323
changes:

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt",
33
"description": "The JavaScript Task Runner",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"author": "Grunt Development Team (https://gruntjs.com/development-team)",
66
"homepage": "https://gruntjs.com/",
77
"repository": "https://github.com/gruntjs/grunt.git",
@@ -37,27 +37,27 @@
3737
"tool"
3838
],
3939
"dependencies": {
40-
"dateformat": "~1.0.12",
40+
"dateformat": "~3.0.3",
4141
"eventemitter2": "~0.4.13",
42-
"exit": "~0.1.1",
42+
"exit": "~0.1.2",
4343
"findup-sync": "~0.3.0",
44-
"glob": "~7.0.0",
45-
"grunt-cli": "~1.2.0",
44+
"glob": "~7.1.6",
45+
"grunt-cli": "~1.3.2",
4646
"grunt-known-options": "~1.1.0",
4747
"grunt-legacy-log": "~2.0.0",
4848
"grunt-legacy-util": "~1.1.1",
4949
"iconv-lite": "~0.4.13",
50-
"js-yaml": "~3.13.1",
51-
"minimatch": "~3.0.2",
52-
"mkdirp": "~1.0.3",
50+
"js-yaml": "~3.14.0",
51+
"minimatch": "~3.0.4",
52+
"mkdirp": "~1.0.4",
5353
"nopt": "~3.0.6",
54-
"path-is-absolute": "~1.0.0",
55-
"rimraf": "~2.6.2"
54+
"path-is-absolute": "~2.0.0",
55+
"rimraf": "~3.0.2"
5656
},
5757
"devDependencies": {
5858
"difflet": "~1.0.1",
5959
"eslint-config-grunt": "~1.0.1",
60-
"grunt-contrib-nodeunit": "~2.0.0",
60+
"grunt-contrib-nodeunit": "~2.1.0",
6161
"grunt-contrib-watch": "~1.1.0",
6262
"grunt-eslint": "~18.1.0",
6363
"temporary": "~0.0.4",

0 commit comments

Comments
 (0)