create-powerapps-project 0.15.2 → 0.15.3
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 +1 -1
- 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 22:41:36 GMT",
|
|
6
|
+
"tag": "create-powerapps-project_v0.15.3",
|
|
7
|
+
"version": "0.15.3",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "derek.finlinson@journeyteam.com",
|
|
12
|
+
"package": "create-powerapps-project",
|
|
13
|
+
"commit": "b1658649d8258e68522e6eadd79a2bbf3a4733d8",
|
|
14
|
+
"comment": "Fix logging"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Sun, 16 Jan 2022 22:28:32 GMT",
|
|
6
21
|
"tag": "create-powerapps-project_v0.15.2",
|
|
7
22
|
"version": "0.15.2",
|
|
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 22:41:36 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.15.
|
|
7
|
+
## 0.15.3
|
|
8
8
|
|
|
9
|
-
Sun, 16 Jan 2022 22:
|
|
9
|
+
Sun, 16 Jan 2022 22:41:36 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Fix logging (derek.finlinson@journeyteam.com)
|
|
14
14
|
|
|
15
|
+
## 0.15.2
|
|
16
|
+
|
|
17
|
+
Sun, 16 Jan 2022 22:28:32 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Remove pnpm (derek.finlinson@journeyteam.com)
|
|
22
|
+
|
|
15
23
|
## 0.15.1
|
|
16
24
|
|
|
17
25
|
Sun, 16 Jan 2022 22:08:05 GMT
|
package/lib/logger.js
CHANGED
|
@@ -11,7 +11,7 @@ const emptySquare = '\u25a1';
|
|
|
11
11
|
const log = (method, symbol, ...args) => {
|
|
12
12
|
const now = new Date();
|
|
13
13
|
const timestamp = kleur_1.default.gray(`[${now.toLocaleTimeString()}]`);
|
|
14
|
-
console[method](timestamp, symbol, args);
|
|
14
|
+
console[method](timestamp, symbol, ...args);
|
|
15
15
|
};
|
|
16
16
|
exports.logger = {
|
|
17
17
|
info(...args) {
|