Skip to content

Commit 07f3b0d

Browse files
authoredMay 25, 2021
Fix preload option (#147)
* 1.4.2 * Fix prepare option for latest grunt * Add changelog
1 parent 4d691e2 commit 07f3b0d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
- v1.4.1:
2+
- date: 2021-05-24
3+
- changes:
4+
- fix preload option for latest grunt
15
- v1.4.0:
26
- date: 2021-03-25
37
- changes:

‎bin/grunt

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ v8flags(function (err, v8flags) {
4747
cwd: options.base,
4848
configPath: options.gruntfile,
4949
require: options.require,
50+
preload: options.preload,
5051
verbose: options.verbose
5152
}, function (env) {
5253
Grunt.execute(env, function(env) {

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "grunt-cli",
33
"description": "The grunt command line interface",
4-
"version": "1.4.1",
4+
"version": "1.4.2",
55
"author": "Grunt Development Team (http://gruntjs.com/development-team)",
66
"repository": "gruntjs/grunt-cli",
77
"license": "MIT",
@@ -15,7 +15,7 @@
1515
"grunt": "bin/grunt"
1616
},
1717
"dependencies": {
18-
"grunt-known-options": "~1.1.1",
18+
"grunt-known-options": "~2.0.0",
1919
"interpret": "~1.1.0",
2020
"liftup": "~3.0.1",
2121
"nopt": "~4.0.1",

0 commit comments

Comments
 (0)
Please sign in to comment.