create-powerapps-project 0.15.4 → 0.15.5
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.json +16 -1
- package/CHANGELOG.md +12 -4
- package/lib/logger.js +5 -9
- package/package.json +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "create-powerapps-project",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Sun, 16 Jan 2022 22:
|
|
5
|
+
"date": "Sun, 16 Jan 2022 23:22:02 GMT",
|
|
6
|
+
"tag": "create-powerapps-project_v0.15.5",
|
|
7
|
+
"version": "0.15.5",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "derek.finlinson@journeyteam.com",
|
|
12
|
+
"package": "create-powerapps-project",
|
|
13
|
+
"commit": "928a436f3d6627765a329ee4cb31d83cab714b1d",
|
|
14
|
+
"comment": "Switch symbols"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Sun, 16 Jan 2022 22:57:19 GMT",
|
|
6
21
|
"tag": "create-powerapps-project_v0.15.4",
|
|
7
22
|
"version": "0.15.4",
|
|
8
23
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
# Change Log - create-powerapps-project
|
|
2
2
|
|
|
3
|
-
This log was last generated on Sun, 16 Jan 2022 22:
|
|
3
|
+
This log was last generated on Sun, 16 Jan 2022 23:22:02 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.15.
|
|
7
|
+
## 0.15.5
|
|
8
8
|
|
|
9
|
-
Sun, 16 Jan 2022 22:
|
|
9
|
+
Sun, 16 Jan 2022 23:22:02 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Switch symbols (derek.finlinson@journeyteam.com)
|
|
14
14
|
|
|
15
|
+
## 0.15.4
|
|
16
|
+
|
|
17
|
+
Sun, 16 Jan 2022 22:57:19 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Fix logging for real (derek.finlinson@journeyteam.com)
|
|
22
|
+
|
|
15
23
|
## 0.15.3
|
|
16
24
|
|
|
17
25
|
Sun, 16 Jan 2022 22:41:55 GMT
|
package/lib/logger.js
CHANGED
|
@@ -5,22 +5,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.logger = void 0;
|
|
7
7
|
const kleur_1 = __importDefault(require("kleur"));
|
|
8
|
-
const
|
|
9
|
-
const triangle = '\u25b2';
|
|
10
|
-
const emptySquare = '\u25a1';
|
|
8
|
+
const tick = '√', cross = '×';
|
|
11
9
|
const log = (method, symbol, ...args) => {
|
|
12
|
-
|
|
13
|
-
const timestamp = kleur_1.default.gray(`[${now.toLocaleTimeString()}]`);
|
|
14
|
-
console[method](timestamp, symbol, ...args);
|
|
10
|
+
console[method](symbol, ...args);
|
|
15
11
|
};
|
|
16
12
|
exports.logger = {
|
|
17
13
|
info(...args) {
|
|
18
|
-
log('info', kleur_1.default.green(
|
|
14
|
+
log('info', kleur_1.default.green(tick), ...args);
|
|
19
15
|
},
|
|
20
16
|
warn(...args) {
|
|
21
|
-
log('warn', kleur_1.default.yellow(
|
|
17
|
+
log('warn', kleur_1.default.yellow(cross), ...args);
|
|
22
18
|
},
|
|
23
19
|
error(...args) {
|
|
24
|
-
log('error', kleur_1.default.red(
|
|
20
|
+
log('error', kleur_1.default.red(cross), ...args);
|
|
25
21
|
}
|
|
26
22
|
};
|