@mbwilding/tool-early-bound-generator 0.0.2 → 0.0.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/README.md +2 -2
- package/dist/index.js +47 -47
- package/npm-shrinkwrap.json +19 -2
- package/package.json +5 -3
- /package/dist/{dictionary.txt → DLaB.Dictionary.txt} +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mbwilding/tool-early-bound-generator",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@mbwilding/tool-early-bound-generator",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.3",
|
|
10
10
|
"license": "GPL-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"react": "^18.3.1",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"@types/react-dom": "^18.3.0",
|
|
20
20
|
"@vitejs/plugin-react": "^4.3.4",
|
|
21
21
|
"happy-dom": "^20.9.0",
|
|
22
|
+
"prettier": "^3.8.3",
|
|
22
23
|
"typescript": "^5.9.3",
|
|
23
24
|
"vite": "^6.0.7",
|
|
24
25
|
"vitest": "^4.1.7"
|
|
@@ -1878,6 +1879,22 @@
|
|
|
1878
1879
|
"node": "^10 || ^12 || >=14"
|
|
1879
1880
|
}
|
|
1880
1881
|
},
|
|
1882
|
+
"node_modules/prettier": {
|
|
1883
|
+
"version": "3.8.3",
|
|
1884
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.3.tgz",
|
|
1885
|
+
"integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==",
|
|
1886
|
+
"dev": true,
|
|
1887
|
+
"license": "MIT",
|
|
1888
|
+
"bin": {
|
|
1889
|
+
"prettier": "bin/prettier.cjs"
|
|
1890
|
+
},
|
|
1891
|
+
"engines": {
|
|
1892
|
+
"node": ">=14"
|
|
1893
|
+
},
|
|
1894
|
+
"funding": {
|
|
1895
|
+
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1881
1898
|
"node_modules/react": {
|
|
1882
1899
|
"version": "18.3.1",
|
|
1883
1900
|
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"displayName": "Early Bound Generator",
|
|
4
4
|
"description": "Generate strongly-typed C# early-bound classes for Dataverse entities, option sets, and messages",
|
|
5
5
|
"main": "index.html",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.3",
|
|
7
7
|
"license": "GPL-2.0",
|
|
8
8
|
"icon": "icons/ebg.svg",
|
|
9
9
|
"contributors": [
|
|
@@ -41,7 +41,8 @@
|
|
|
41
41
|
"test": "vitest run",
|
|
42
42
|
"test:watch": "vitest",
|
|
43
43
|
"validate": "pptb-validate",
|
|
44
|
-
"finalize-package": "npm shrinkwrap"
|
|
44
|
+
"finalize-package": "npm shrinkwrap",
|
|
45
|
+
"pretty": "prettier --write ."
|
|
45
46
|
},
|
|
46
47
|
"files": [
|
|
47
48
|
"dist",
|
|
@@ -60,6 +61,7 @@
|
|
|
60
61
|
"happy-dom": "^20.9.0",
|
|
61
62
|
"typescript": "^5.9.3",
|
|
62
63
|
"vite": "^6.0.7",
|
|
63
|
-
"vitest": "^4.1.7"
|
|
64
|
+
"vitest": "^4.1.7",
|
|
65
|
+
"prettier": "^3.8.3"
|
|
64
66
|
}
|
|
65
67
|
}
|
|
File without changes
|