mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-23 17:29:51 +02:00
add monaco editor core library
This commit is contained in:
15
Antedit/README.md
Normal file
15
Antedit/README.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Antedit
|
||||
This is an example project, generated by AntOS Development Kit
|
||||
|
||||
## Howto
|
||||
Use the CodePad command palette to access to the SDK functionalities:
|
||||
|
||||
1. Create new project
|
||||
2. Init the project from the current folder located in side bar
|
||||
3. Build and run the project
|
||||
4. Release the project in zip package
|
||||
|
||||
## Set up build target
|
||||
|
||||
Open the `project.json` file from the current project tree and add/remove
|
||||
build target entries. Save the file
|
3
Antedit/assets/scheme.html
Normal file
3
Antedit/assets/scheme.html
Normal file
@ -0,0 +1,3 @@
|
||||
<afx-app-window apptitle="Antedit" width="500" height="400" data-id="Antedit">
|
||||
<afx-hbox ></afx-hbox>
|
||||
</afx-app-window>
|
7
Antedit/coffees/main.coffee
Normal file
7
Antedit/coffees/main.coffee
Normal file
@ -0,0 +1,7 @@
|
||||
class Antedit extends this.OS.application.BaseApplication
|
||||
constructor: ( args ) ->
|
||||
super "Antedit", args
|
||||
|
||||
main: () ->
|
||||
|
||||
this.OS.register "Antedit", Antedit
|
16
Antedit/package.json
Normal file
16
Antedit/package.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"pkgname": "Antedit",
|
||||
"app":"Antedit",
|
||||
"name":"Antedit",
|
||||
"description":"Antedit",
|
||||
"info":{
|
||||
"author": "",
|
||||
"email": ""
|
||||
},
|
||||
"version":"0.0.1-a",
|
||||
"category":"Other",
|
||||
"iconclass":"fa fa-adn",
|
||||
"mimes":["none"],
|
||||
"dependencies":[],
|
||||
"locale": {}
|
||||
}
|
8
Antedit/project.json
Normal file
8
Antedit/project.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Antedit",
|
||||
"css": [],
|
||||
"javascripts": [],
|
||||
"coffees": ["coffees/main.coffee"],
|
||||
"ts": [],
|
||||
"copies": ["assets/scheme.html", "package.json", "README.md"]
|
||||
}
|
19
Antedit/ts/main.ts
Normal file
19
Antedit/ts/main.ts
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
namespace OS {
|
||||
|
||||
export namespace application {
|
||||
/**
|
||||
*
|
||||
* @class Antedit
|
||||
* @extends {BaseApplication}
|
||||
*/
|
||||
export class Antedit extends BaseApplication {
|
||||
constructor(args: AppArgumentsType[]) {
|
||||
super("Antedit", args);
|
||||
}
|
||||
main(): void {
|
||||
// YOUR CODE HERE
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user