create-powerapps-project 0.16.1 → 0.16.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/CHANGELOG.json +16 -1
- package/CHANGELOG.md +12 -4
- package/lib/logger.js +3 -3
- 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": "Tue, 08 Feb 2022 18:
|
|
5
|
+
"date": "Tue, 08 Feb 2022 18:47:00 GMT",
|
|
6
|
+
"tag": "create-powerapps-project_v0.16.2",
|
|
7
|
+
"version": "0.16.2",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "derek.finlinson@journeyteam.com",
|
|
12
|
+
"package": "create-powerapps-project",
|
|
13
|
+
"commit": "70380beb0078b8c1ab669bf5f3e4eacbbcd99ba7",
|
|
14
|
+
"comment": "Update symbols"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Tue, 08 Feb 2022 18:13:53 GMT",
|
|
6
21
|
"tag": "create-powerapps-project_v0.16.1",
|
|
7
22
|
"version": "0.16.1",
|
|
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 Tue, 08 Feb 2022 18:
|
|
3
|
+
This log was last generated on Tue, 08 Feb 2022 18:47:00 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.16.
|
|
7
|
+
## 0.16.2
|
|
8
8
|
|
|
9
|
-
Tue, 08 Feb 2022 18:
|
|
9
|
+
Tue, 08 Feb 2022 18:47:00 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Update symbols (derek.finlinson@journeyteam.com)
|
|
14
14
|
|
|
15
|
+
## 0.16.1
|
|
16
|
+
|
|
17
|
+
Tue, 08 Feb 2022 18:13:53 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Fix logger and file paths (derek.finlinson@journeyteam.com)
|
|
22
|
+
|
|
15
23
|
## 0.16.0
|
|
16
24
|
|
|
17
25
|
Mon, 07 Feb 2022 22:02:33 GMT
|
package/lib/logger.js
CHANGED
|
@@ -7,10 +7,10 @@ exports.logger = exports.icons = void 0;
|
|
|
7
7
|
const kleur_1 = __importDefault(require("kleur"));
|
|
8
8
|
const isTest = process.env.JEST_WORKER_ID !== undefined;
|
|
9
9
|
exports.icons = {
|
|
10
|
-
done: kleur_1.default.green('
|
|
11
|
-
info: kleur_1.default.cyan('
|
|
10
|
+
done: kleur_1.default.green('◉'),
|
|
11
|
+
info: kleur_1.default.cyan('◎'),
|
|
12
12
|
error: kleur_1.default.red('⨂'),
|
|
13
|
-
warn: kleur_1.default.yellow('
|
|
13
|
+
warn: kleur_1.default.yellow('⨁')
|
|
14
14
|
};
|
|
15
15
|
exports.logger = {
|
|
16
16
|
info(...args) {
|