-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.ts
35 lines (32 loc) · 1.05 KB
/
examples.ts
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
// Copyright © 2022 Dpm Land. All Rights Reserved.
import { Monk } from './mod.ts';
await Monk({
versions: {
downloadVersion: 'stable', // Here you can add the version for download only canary or stable!
stable: {
url: 'https://github.com/dpmland/dpm', // Here you add the url and branch for the stable and canary
branch: 'main',
},
canary: {
url: 'https://github.com/dpmland/dpm',
branch: 'dev',
},
},
files: {
appName: 'dpm', // With this name compile the app into a binary!
stable: {
importMapFile: './import_map.json', // This route is necessary for the compilation!
mainFile: './dpm.ts',
},
canary: {
importMapFile: './import_map.json',
mainFile: './dpm.ts',
},
},
// OPTIONAL
social: {
github: 'https://github.com/dpmland/dpm', // The GitHub Repo for more information!
discord: 'https://discord.com/invite/Um27YPJKud', // The Discord Server for more information!
errors: 'https://github.com/dpmland/dpm/issues', // The issues route for the bugs!
},
});