create-powerapps-project 0.15.3 → 0.15.4

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 CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "create-powerapps-project",
3
3
  "entries": [
4
4
  {
5
- "date": "Sun, 16 Jan 2022 22:41:36 GMT",
5
+ "date": "Sun, 16 Jan 2022 22:56:55 GMT",
6
+ "tag": "create-powerapps-project_v0.15.4",
7
+ "version": "0.15.4",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "derek.finlinson@journeyteam.com",
12
+ "package": "create-powerapps-project",
13
+ "commit": "acf6ca4763a9d98fa7683fe517deb872f12f4c42",
14
+ "comment": "Fix logging for real"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Sun, 16 Jan 2022 22:41:55 GMT",
6
21
  "tag": "create-powerapps-project_v0.15.3",
7
22
  "version": "0.15.3",
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:41:36 GMT and should not be manually modified.
3
+ This log was last generated on Sun, 16 Jan 2022 22:56:55 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.15.3
7
+ ## 0.15.4
8
8
 
9
- Sun, 16 Jan 2022 22:41:36 GMT
9
+ Sun, 16 Jan 2022 22:56:55 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - Fix logging (derek.finlinson@journeyteam.com)
13
+ - Fix logging for real (derek.finlinson@journeyteam.com)
14
14
 
15
+ ## 0.15.3
16
+
17
+ Sun, 16 Jan 2022 22:41:55 GMT
18
+
19
+ ### Patches
20
+
21
+ - Fix logging (derek.finlinson@journeyteam.com)
22
+
15
23
  ## 0.15.2
16
24
 
17
25
  Sun, 16 Jan 2022 22:28:32 GMT
package/lib/logger.js CHANGED
@@ -15,12 +15,12 @@ const log = (method, symbol, ...args) => {
15
15
  };
16
16
  exports.logger = {
17
17
  info(...args) {
18
- log('info', kleur_1.default.green(square), args);
18
+ log('info', kleur_1.default.green(square), ...args);
19
19
  },
20
20
  warn(...args) {
21
- log('warn', kleur_1.default.yellow(triangle), args);
21
+ log('warn', kleur_1.default.yellow(triangle), ...args);
22
22
  },
23
23
  error(...args) {
24
- log('error', kleur_1.default.red(emptySquare), args);
24
+ log('error', kleur_1.default.red(emptySquare), ...args);
25
25
  }
26
26
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-powerapps-project",
3
3
  "description": "💧 plop generator for Dataverse development",
4
- "version": "0.15.3",
4
+ "version": "0.15.4",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
7
7
  "bin": {