@asyncapi/cli 0.58.6 → 0.58.8
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/assets/create-glee-app/templates/default/asyncapi.yaml +1 -1
- package/assets/create-glee-app/templates/default/package-lock.json +7 -7
- package/assets/create-glee-app/templates/default/package.json +1 -1
- package/lib/commands/new/file.js +3 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"version": "0.1.0",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@asyncapi/glee": "^0.26.
|
|
12
|
+
"@asyncapi/glee": "^0.26.9"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/node": "^20.5.9"
|
|
@@ -279,9 +279,9 @@
|
|
|
279
279
|
}
|
|
280
280
|
},
|
|
281
281
|
"node_modules/@asyncapi/glee": {
|
|
282
|
-
"version": "0.26.
|
|
283
|
-
"resolved": "https://registry.npmjs.org/@asyncapi/glee/-/glee-0.26.
|
|
284
|
-
"integrity": "sha512-
|
|
282
|
+
"version": "0.26.9",
|
|
283
|
+
"resolved": "https://registry.npmjs.org/@asyncapi/glee/-/glee-0.26.9.tgz",
|
|
284
|
+
"integrity": "sha512-ZEQlSGEnfserjNr3BTX4NRV4BWySmV079dSpPOOS+9w2nWpDDV67rzciMGJRnH3C4kUKFJoy4KD3PEj0ttsVPw==",
|
|
285
285
|
"dependencies": {
|
|
286
286
|
"@asyncapi/generator": "^1.13.1",
|
|
287
287
|
"@asyncapi/html-template": "^0.28.4",
|
|
@@ -12707,9 +12707,9 @@
|
|
|
12707
12707
|
}
|
|
12708
12708
|
},
|
|
12709
12709
|
"@asyncapi/glee": {
|
|
12710
|
-
"version": "0.26.
|
|
12711
|
-
"resolved": "https://registry.npmjs.org/@asyncapi/glee/-/glee-0.26.
|
|
12712
|
-
"integrity": "sha512-
|
|
12710
|
+
"version": "0.26.9",
|
|
12711
|
+
"resolved": "https://registry.npmjs.org/@asyncapi/glee/-/glee-0.26.9.tgz",
|
|
12712
|
+
"integrity": "sha512-ZEQlSGEnfserjNr3BTX4NRV4BWySmV079dSpPOOS+9w2nWpDDV67rzciMGJRnH3C4kUKFJoy4KD3PEj0ttsVPw==",
|
|
12713
12713
|
"requires": {
|
|
12714
12714
|
"@asyncapi/generator": "^1.13.1",
|
|
12715
12715
|
"@asyncapi/html-template": "^0.28.4",
|
package/lib/commands/new/file.js
CHANGED
|
@@ -137,7 +137,9 @@ class NewFile extends base_1.default {
|
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
catch (e) {
|
|
140
|
-
|
|
140
|
+
if (e.code === 'EACCES') {
|
|
141
|
+
this.error('Permission denied to read the file. You do not have the necessary permissions.');
|
|
142
|
+
}
|
|
141
143
|
}
|
|
142
144
|
yield writeFile(fileNameToWriteToDisk, asyncApiFile, { encoding: 'utf8' });
|
|
143
145
|
console.log(`Created file ${fileNameToWriteToDisk}...`);
|
package/oclif.manifest.json
CHANGED