netlify-cli 17.23.1 → 17.23.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/base-command.d.ts.map +1 -1
- package/dist/commands/base-command.js +9 -2
- package/dist/commands/main.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/build-info.d.ts.map +1 -1
- package/dist/utils/build-info.js +7 -0
- package/dist/utils/gitignore.d.ts +1 -1
- package/dist/utils/gitignore.d.ts.map +1 -1
- package/dist/utils/gitignore.js +0 -4
- package/functions-templates/javascript/scheduled-function/package.json +1 -1
- package/functions-templates/typescript/hello-world/package-lock.json +544 -16
- package/functions-templates/typescript/hello-world/package.json +1 -1
- package/functions-templates/typescript/scheduled-function/package.json +1 -1
- package/npm-shrinkwrap.json +19 -22
- package/package.json +3 -3
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "17.23.
|
|
3
|
+
"version": "17.23.2",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "17.23.
|
|
9
|
+
"version": "17.23.2",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"backoff": "2.5.0",
|
|
30
30
|
"better-opn": "3.0.2",
|
|
31
31
|
"boxen": "7.1.1",
|
|
32
|
-
"chalk": "5.
|
|
33
|
-
"chokidar": "3.
|
|
32
|
+
"chalk": "5.3.0",
|
|
33
|
+
"chokidar": "3.6.0",
|
|
34
34
|
"ci-info": "3.8.0",
|
|
35
35
|
"clean-deep": "3.4.0",
|
|
36
36
|
"commander": "10.0.1",
|
|
@@ -5492,9 +5492,9 @@
|
|
|
5492
5492
|
}
|
|
5493
5493
|
},
|
|
5494
5494
|
"node_modules/chalk": {
|
|
5495
|
-
"version": "5.
|
|
5496
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.
|
|
5497
|
-
"integrity": "sha512-
|
|
5495
|
+
"version": "5.3.0",
|
|
5496
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
|
5497
|
+
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==",
|
|
5498
5498
|
"engines": {
|
|
5499
5499
|
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
5500
5500
|
},
|
|
@@ -5508,15 +5508,9 @@
|
|
|
5508
5508
|
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
|
|
5509
5509
|
},
|
|
5510
5510
|
"node_modules/chokidar": {
|
|
5511
|
-
"version": "3.
|
|
5512
|
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.
|
|
5513
|
-
"integrity": "sha512-
|
|
5514
|
-
"funding": [
|
|
5515
|
-
{
|
|
5516
|
-
"type": "individual",
|
|
5517
|
-
"url": "https://paulmillr.com/funding/"
|
|
5518
|
-
}
|
|
5519
|
-
],
|
|
5511
|
+
"version": "3.6.0",
|
|
5512
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
5513
|
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
5520
5514
|
"dependencies": {
|
|
5521
5515
|
"anymatch": "~3.1.2",
|
|
5522
5516
|
"braces": "~3.0.2",
|
|
@@ -5529,6 +5523,9 @@
|
|
|
5529
5523
|
"engines": {
|
|
5530
5524
|
"node": ">= 8.10.0"
|
|
5531
5525
|
},
|
|
5526
|
+
"funding": {
|
|
5527
|
+
"url": "https://paulmillr.com/funding/"
|
|
5528
|
+
},
|
|
5532
5529
|
"optionalDependencies": {
|
|
5533
5530
|
"fsevents": "~2.3.2"
|
|
5534
5531
|
}
|
|
@@ -19126,9 +19123,9 @@
|
|
|
19126
19123
|
"integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
|
|
19127
19124
|
},
|
|
19128
19125
|
"chalk": {
|
|
19129
|
-
"version": "5.
|
|
19130
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.
|
|
19131
|
-
"integrity": "sha512-
|
|
19126
|
+
"version": "5.3.0",
|
|
19127
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
|
19128
|
+
"integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w=="
|
|
19132
19129
|
},
|
|
19133
19130
|
"chardet": {
|
|
19134
19131
|
"version": "0.7.0",
|
|
@@ -19136,9 +19133,9 @@
|
|
|
19136
19133
|
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
|
|
19137
19134
|
},
|
|
19138
19135
|
"chokidar": {
|
|
19139
|
-
"version": "3.
|
|
19140
|
-
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.
|
|
19141
|
-
"integrity": "sha512-
|
|
19136
|
+
"version": "3.6.0",
|
|
19137
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
19138
|
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
19142
19139
|
"requires": {
|
|
19143
19140
|
"anymatch": "~3.1.2",
|
|
19144
19141
|
"braces": "~3.0.2",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "17.23.
|
|
4
|
+
"version": "17.23.2",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"backoff": "2.5.0",
|
|
55
55
|
"better-opn": "3.0.2",
|
|
56
56
|
"boxen": "7.1.1",
|
|
57
|
-
"chalk": "5.
|
|
58
|
-
"chokidar": "3.
|
|
57
|
+
"chalk": "5.3.0",
|
|
58
|
+
"chokidar": "3.6.0",
|
|
59
59
|
"ci-info": "3.8.0",
|
|
60
60
|
"clean-deep": "3.4.0",
|
|
61
61
|
"commander": "10.0.1",
|