create-powerapps-project 0.16.4 → 0.16.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/packageManager.js +4 -2
- package/package.json +1 -1
- package/plop-templates/pcf/{index.ts → index.ts.hbs} +1 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,22 @@
|
|
|
2
2
|
"name": "create-powerapps-project",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Mon, 14 Feb 2022 23:29:38 GMT",
|
|
6
|
+
"tag": "create-powerapps-project_v0.16.5",
|
|
7
|
+
"version": "0.16.5",
|
|
8
|
+
"comments": {
|
|
9
|
+
"patch": [
|
|
10
|
+
{
|
|
11
|
+
"author": "derek.finlinson@journeyteam.com",
|
|
12
|
+
"package": "create-powerapps-project",
|
|
13
|
+
"commit": "361a315823b5558a96c191850c2fcf8863653e5b",
|
|
14
|
+
"comment": "Set class name from prompts"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"date": "Fri, 11 Feb 2022 16:59:23 GMT",
|
|
6
21
|
"tag": "create-powerapps-project_v0.16.4",
|
|
7
22
|
"version": "0.16.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
|
|
3
|
+
This log was last generated on Mon, 14 Feb 2022 23:29:38 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## 0.16.
|
|
7
|
+
## 0.16.5
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
Mon, 14 Feb 2022 23:29:38 GMT
|
|
10
10
|
|
|
11
11
|
### Patches
|
|
12
12
|
|
|
13
|
-
-
|
|
13
|
+
- Set class name from prompts (derek.finlinson@journeyteam.com)
|
|
14
14
|
|
|
15
|
+
## 0.16.4
|
|
16
|
+
|
|
17
|
+
Fri, 11 Feb 2022 16:59:23 GMT
|
|
18
|
+
|
|
19
|
+
### Patches
|
|
20
|
+
|
|
21
|
+
- Comment out pcf plop for now (derek.finlinson@journeyteam.com)
|
|
22
|
+
|
|
15
23
|
## 0.16.3
|
|
16
24
|
|
|
17
25
|
Wed, 09 Feb 2022 16:19:05 GMT
|
package/lib/packageManager.js
CHANGED
|
@@ -38,12 +38,14 @@ function getPackages(type) {
|
|
|
38
38
|
dependencies: [
|
|
39
39
|
'react',
|
|
40
40
|
'react-dom',
|
|
41
|
-
'@fluentui/react'
|
|
41
|
+
'@fluentui/react',
|
|
42
|
+
'@fluentui/font-icons-mdl2'
|
|
42
43
|
],
|
|
43
44
|
devDependencies: [
|
|
44
45
|
//`powerapps-project-${type}`,
|
|
45
46
|
'@types/react',
|
|
46
|
-
'@types/react-dom'
|
|
47
|
+
'@types/react-dom',
|
|
48
|
+
'@types/xrm'
|
|
47
49
|
]
|
|
48
50
|
};
|
|
49
51
|
}
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ import { initializeIcons } from '@fluentui/font-icons-mdl2';
|
|
|
5
5
|
|
|
6
6
|
import { App } from './App';
|
|
7
7
|
|
|
8
|
-
export class
|
|
8
|
+
export class {{name}} implements ComponentFramework.StandardControl<IInputs, IOutputs> {
|
|
9
9
|
container: HTMLDivElement;
|
|
10
10
|
context: ComponentFramework.Context<IInputs>;
|
|
11
11
|
isTestHarness: boolean;
|