-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from matheuslenke/feature/T12-create-tonto-theme
[T12] Feature: create tonto theme
- Loading branch information
Showing
56 changed files
with
3,536 additions
and
928 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package CheckGeneralizationConsistency | ||
kind Person | ||
role Doctor specializes Person | ||
|
||
relation Doctor -- treats -- Person | ||
|
||
genset GeneralizationSet { | ||
general Person | ||
specifics Doctor.treats | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import getEditorServiceOverride from "@codingame/monaco-vscode-editor-service-override"; | ||
import getKeybindingsServiceOverride from "@codingame/monaco-vscode-keybindings-service-override"; | ||
import { MonacoEditorLanguageClientWrapper } from "monaco-editor-wrapper"; | ||
import { addMonacoStyles } from "monaco-editor-wrapper/styles"; | ||
import { useOpenEditorStub } from "monaco-languageclient"; | ||
|
||
export const defineUserServices = () => { | ||
return { | ||
userServices: { | ||
...getEditorServiceOverride(useOpenEditorStub), | ||
...getKeybindingsServiceOverride() | ||
}, | ||
debugLogging: true | ||
}; | ||
}; | ||
export { | ||
MonacoEditorLanguageClientWrapper, addMonacoStyles, getEditorServiceOverride, | ||
getKeybindingsServiceOverride | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import shell from "shelljs"; | ||
|
||
// copy workers to public | ||
shell.mkdir("-p", "./public/monaco-editor-workers/workers"); | ||
shell.cp( | ||
"-fr", | ||
"./node_modules/monaco-editor-workers/dist/index.js", | ||
"./public/monaco-editor-workers/index.js" | ||
); | ||
shell.cp( | ||
"-fr", | ||
"./node_modules/monaco-editor-workers/dist/workers/editorWorker-es.js", | ||
"./public/monaco-editor-workers/workers/editorWorker-es.js" | ||
); | ||
shell.cp( | ||
"-fr", | ||
"./node_modules/monaco-editor-workers/dist/workers/editorWorker-iife.js", | ||
"./public/monaco-editor-workers/workers/editorWorker-iife.js" | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import * as esbuild from "esbuild"; | ||
import shell from "shelljs"; | ||
|
||
// setup & copy over css & html to public | ||
shell.mkdir("-p", "./public"); | ||
shell.cp("-fr", "./src/static/*.css", "./public/"); | ||
shell.cp("-fr", "./src/static/*.html", "./public"); | ||
|
||
// bundle minilogo.ts, and also copy to public | ||
await esbuild.build({ | ||
entryPoints: ["./src/static/minilogo.ts"], | ||
minify: true, | ||
sourcemap: true, | ||
bundle: true, | ||
outfile: "./public/minilogo.js", | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.