pptb-standard-sample-tool 1.1.0 → 1.1.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.
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
|
+
<svg fill="#000000" width="800px" height="800px" viewBox="0 -2 18 18" xmlns="http://www.w3.org/2000/svg"><path d="M5.24264069,6.65685425 L0.292893219,1.70710678 C-0.0976310729,1.31658249 -0.0976310729,0.683417511 0.292893219,0.292893219 C0.683417511,-0.0976310729 1.31658249,-0.0976310729 1.70710678,0.292893219 L7.36396103,5.94974747 C7.75448532,6.34027176 7.75448532,6.97343674 7.36396103,7.36396103 L1.70710678,13.0208153 C1.31658249,13.4113396 0.683417511,13.4113396 0.292893219,13.0208153 C-0.0976310729,12.630291 -0.0976310729,11.997126 0.292893219,11.6066017 L5.24264069,6.65685425 Z M9,11 L17,11 C17.5522847,11 18,11.4477153 18,12 C18,12.5522847 17.5522847,13 17,13 L9,13 C8.44771525,13 8,12.5522847 8,12 C8,11.4477153 8.44771525,11 9,11 Z"/></svg>
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptb-standard-sample-tool",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"displayName": "HTML Sample Tool",
|
|
5
5
|
"description": "A sample Power Platform ToolBox tool built with HTML, CSS, and TypeScript",
|
|
6
6
|
"main": "index.html",
|
|
7
|
+
"icon": "icon/sample-icon.svg",
|
|
7
8
|
"author": "Power Platform ToolBox",
|
|
8
9
|
"keywords": [
|
|
9
10
|
"powerplatform",
|
|
@@ -38,9 +39,10 @@
|
|
|
38
39
|
"node": ">=18.0.0"
|
|
39
40
|
},
|
|
40
41
|
"scripts": {
|
|
41
|
-
"build": "tsc && npm run copy-html && npm run copy-css",
|
|
42
|
+
"build": "tsc && npm run copy-html && npm run copy-css && npm run copy-icon",
|
|
42
43
|
"copy-html": "shx cp src/index.html dist/",
|
|
43
44
|
"copy-css": "shx cp src/styles.css dist/",
|
|
45
|
+
"copy-icon": "shx cp -r icon/ dist/icon/",
|
|
44
46
|
"finalize-package": "npm shrinkwrap",
|
|
45
47
|
"watch": "tsc --watch"
|
|
46
48
|
},
|
|
@@ -51,7 +53,6 @@
|
|
|
51
53
|
},
|
|
52
54
|
"files": [
|
|
53
55
|
"dist",
|
|
54
|
-
"icon",
|
|
55
56
|
"npm-shrinkwrap.json"
|
|
56
57
|
]
|
|
57
58
|
}
|
|
File without changes
|