-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbundle.ts
More file actions
54 lines (53 loc) · 1.13 KB
/
bundle.ts
File metadata and controls
54 lines (53 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import type { ConfigInterface } from "./scripts/manifest/interfaces";
export const config: ConfigInterface = {
organization: "scWorkshop",
organization_name: "SC Workshop",
cep_version: "9.0",
environment: {
apps: {
FLPR: "[19.0,99.0]",
},
locales: ["All"],
runtimes: {
CSXS: "9.0",
},
},
extensions: {
Plugin: {
type: "native",
root: "./packages/plugin",
path: "./fcm.xml",
children: ["PublishSettings"],
useFeatureSets: true,
ui: {
//name: "SC Plugin",
type: "ModalDialog",
size: { width: 1, height: 1 },
},
},
PublishSettings: {
type: "extension",
root: "./packages/publisher",
path: "./index.html",
params: ["--enable-nodejs", "--mixed-context"],
lifecycle: {
auto_visible: true,
},
ui: {
//name: "SCSWF Publisher",
type: "ModalDialog",
size: { width: 630, height: 800 },
},
},
/*ExportNameTransfer:
{
type: "command",
path: "jsfl/export_name_transfer.jsfl"
}*/
// ImportCommand: {
// type: "command",
// name: "SupercellSWF/Import .sc",
// path: "importer/import_sc.jsfl"
// }
},
};