@webos-tools/cli 3.0.4 → 3.0.6
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/CHANGELOG.md +10 -0
- package/lib/log.js +2 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 3.0.6 (April 04, 2024)
|
|
2
|
+
### ares-log
|
|
3
|
+
* Fixed a bug that invalid json format.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## 3.0.5 (April 01, 2024)
|
|
7
|
+
### Common
|
|
8
|
+
* Fixed a bug that can not install on window by CMD or Powershell
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
## 3.0.4 (March 30, 2024)
|
|
2
12
|
### Common
|
|
3
13
|
* Fixed a bug that always requires sudo permission when exec ares commands
|
package/lib/log.js
CHANGED
|
@@ -64,8 +64,8 @@ const util = require('util'),
|
|
|
64
64
|
|
|
65
65
|
function _onData(data) {
|
|
66
66
|
log.info("log#show()#_onData()");
|
|
67
|
-
const
|
|
68
|
-
|
|
67
|
+
const strLogs = (Buffer.isBuffer(data)) ? data.toString() : data;
|
|
68
|
+
process.stdout.write(strLogs);
|
|
69
69
|
|
|
70
70
|
if (options.argv.save) {
|
|
71
71
|
fs.writeFileSync(savedFilePath, data, {encoding: 'utf8', flag:'a'});
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webos-tools/cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@webos-tools/cli",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.6",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"os": [
|
|
12
12
|
"darwin",
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webos-tools/cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
4
4
|
"description": "Command Line Interface for development webOS application and service",
|
|
5
5
|
"main": "APIs.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"postinstall": "
|
|
7
|
+
"postinstall": "node scripts/postinstall.js"
|
|
8
8
|
},
|
|
9
9
|
"author": "ye.kim",
|
|
10
10
|
"repository": {
|