@schemastore/foundryvtt-system-manifest 1.0.1 → 1.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 +1 -1
- package/index.d.ts +2 -10
- package/package.json +5 -2
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -32,14 +32,6 @@ export type JSONSchemaForFoundryVTTSystemFilesSystemJson =
|
|
|
32
32
|
* A less common way of including Javascript with the increasing adoption of ESModules, this field allows you to define an array of JavaScript file paths which should be included whenever this package is being used. Each listed script path should be relative to the package root directory. All scripts which exist will be automatically included in the game session and loaded in their listed order.
|
|
33
33
|
*/
|
|
34
34
|
export type FileArray = string[];
|
|
35
|
-
/**
|
|
36
|
-
* The preferred method for including Javascript with your project. This field allows you to define an array of JS files which use the newer ES6 modules specification. As with scripts, this should be declared as an array. These files are identified separately in the manifest so they may be correctly loaded as a module rather than a script.
|
|
37
|
-
*/
|
|
38
|
-
export type FileArray1 = string[];
|
|
39
|
-
/**
|
|
40
|
-
* You can designate an array of CSS files which should be included in the game session whenever this package is used. Each listed stylesheet path should be relative to the package root directory. All stylesheets which exist will be automatically included in the game session and loaded in their listed order.
|
|
41
|
-
*/
|
|
42
|
-
export type FileArray2 = string[];
|
|
43
35
|
|
|
44
36
|
export interface JSONSchemaForFoundryVTTManifestFilesModuleJsonSystemJsonOrWorldJsonThisIsTheBaseFromWhichOthersInherit {
|
|
45
37
|
/**
|
|
@@ -144,8 +136,8 @@ export interface JSONSchemaForFoundryVTTManifestFilesModuleJsonSystemJsonOrWorld
|
|
|
144
136
|
*/
|
|
145
137
|
compatibleCoreVersion?: string | number;
|
|
146
138
|
scripts?: FileArray;
|
|
147
|
-
esmodules?:
|
|
148
|
-
styles?:
|
|
139
|
+
esmodules?: FileArray;
|
|
140
|
+
styles?: FileArray;
|
|
149
141
|
/**
|
|
150
142
|
* A list of localization files that Foundry can use to translate strings.
|
|
151
143
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,10 @@
|
|
|
4
4
|
"license": "GPL-3.0",
|
|
5
5
|
"name": "@schemastore/foundryvtt-system-manifest",
|
|
6
6
|
"private": false,
|
|
7
|
-
"repository":
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/ffflorian/schemastore-updater.git"
|
|
10
|
+
},
|
|
8
11
|
"types": "index.d.ts",
|
|
9
|
-
"version": "1.0.
|
|
12
|
+
"version": "1.0.3"
|
|
10
13
|
}
|