This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #109 from leaphy-robotics/python-editor
feat: add python editor
- Loading branch information
Showing
100 changed files
with
2,766 additions
and
1,915 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,161 +1,161 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"leaphy-client": { | ||
"projectType": "application", | ||
"schematics": { | ||
"@schematics/angular:component": { | ||
"style": "scss" | ||
} | ||
}, | ||
"root": "", | ||
"sourceRoot": "src", | ||
"prefix": "app", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist/", | ||
"index": "src/index.html", | ||
"main": "src/main.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.app.json", | ||
"aot": true, | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets", | ||
{ | ||
"glob": "**/*", | ||
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/media", | ||
"output": "./media" | ||
}, | ||
{ | ||
"glob": "en.json", | ||
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json", | ||
"output": "./msg/json" | ||
}, | ||
{ | ||
"glob": "nl.json", | ||
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json", | ||
"output": "./msg/json" | ||
} | ||
], | ||
"styles": [ | ||
"node_modules/bootstrap/dist/css/bootstrap.min.css", | ||
"node_modules/@fortawesome/fontawesome-free/css/all.css", | ||
"src/styles.scss" | ||
], | ||
"scripts": [ | ||
"./node_modules/jquery/dist/jquery.min.js", | ||
"./node_modules/bootstrap/dist/js/bootstrap.min.js", | ||
"./node_modules/prismjs/prism.js", | ||
"./node_modules/prismjs/components/prism-clike.js", | ||
"./node_modules/prismjs/components/prism-c.js", | ||
"./node_modules/prismjs/components/prism-cpp.js", | ||
"./node_modules/prismjs/components/prism-arduino.js", | ||
"./node_modules/ace-builds/src-min/ace.js", | ||
"./node_modules/ace-builds/src-min/mode-c_cpp.js", | ||
"./node_modules/ace-builds/src-min/theme-solarized_light.js", | ||
"./node_modules/ace-builds/src-min/ext-beautify.js", | ||
"./node_modules/ace-builds/src-min/ext-searchbox.js", | ||
"./node_modules/ace-builds/src-min/ext-language_tools.js" | ||
] | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"replace": "src/environments/environment.ts", | ||
"with": "src/environments/environment.prod.ts" | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"leaphy-client": { | ||
"projectType": "application", | ||
"schematics": { | ||
"@schematics/angular:component": { | ||
"style": "scss" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"namedChunks": false, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "2mb", | ||
"maximumError": "5mb" | ||
}, | ||
"root": "", | ||
"sourceRoot": "src", | ||
"prefix": "app", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist/", | ||
"index": "src/index.html", | ||
"main": "src/main.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.app.json", | ||
"aot": true, | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets", | ||
{ | ||
"glob": "**/*", | ||
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/media", | ||
"output": "./media" | ||
}, | ||
{ | ||
"glob": "en.json", | ||
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json", | ||
"output": "./msg/json" | ||
}, | ||
{ | ||
"glob": "nl.json", | ||
"input": "./node_modules/@leaphy-robotics/leaphy-blocks/msg/json", | ||
"output": "./msg/json" | ||
} | ||
], | ||
"styles": [ | ||
"node_modules/bootstrap/dist/css/bootstrap.min.css", | ||
"node_modules/@fortawesome/fontawesome-free/css/all.css", | ||
"src/styles.scss" | ||
], | ||
"scripts": [ | ||
"./node_modules/jquery/dist/jquery.min.js", | ||
"./node_modules/bootstrap/dist/js/bootstrap.min.js", | ||
"./node_modules/prismjs/prism.js", | ||
"./node_modules/prismjs/components/prism-clike.js", | ||
"./node_modules/prismjs/components/prism-c.js", | ||
"./node_modules/prismjs/components/prism-cpp.js", | ||
"./node_modules/prismjs/components/prism-arduino.js", | ||
"./node_modules/ace-builds/src-min/ace.js", | ||
"./node_modules/ace-builds/src-min/mode-c_cpp.js", | ||
"./node_modules/ace-builds/src-min/mode-python.js", | ||
"./node_modules/ace-builds/src-min/theme-solarized_light.js", | ||
"./node_modules/ace-builds/src-min/ext-beautify.js", | ||
"./node_modules/ace-builds/src-min/ext-searchbox.js", | ||
"./node_modules/ace-builds/src-min/ext-language_tools.js" | ||
] | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"replace": "src/environments/environment.ts", | ||
"with": "src/environments/environment.prod.ts" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"namedChunks": false, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "2mb", | ||
"maximumError": "5mb" | ||
}, | ||
{ | ||
"type": "anyComponentStyle", | ||
"maximumWarning": "6kb", | ||
"maximumError": "10kb" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "leaphy-client:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "leaphy-client:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "leaphy-client:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.spec.json", | ||
"karmaConfig": "karma.conf.js", | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
], | ||
"styles": [ | ||
"src/styles.scss", | ||
"./node_modules/bootstrap/@fortawesome/fontawesome-free/css/all.css" | ||
], | ||
"scripts": [] | ||
} | ||
}, | ||
{ | ||
"type": "anyComponentStyle", | ||
"maximumWarning": "6kb", | ||
"maximumError": "10kb" | ||
"lint": { | ||
"builder": "@angular-eslint/builder:lint", | ||
"options": { | ||
"lintFilePatterns": [ | ||
"src/**/*.ts", | ||
"src/**/*.html" | ||
] | ||
} | ||
}, | ||
"e2e": { | ||
"builder": "@angular-devkit/build-angular:protractor", | ||
"options": { | ||
"protractorConfig": "e2e/protractor.conf.js", | ||
"devServerTarget": "leaphy-client:serve" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "leaphy-client:serve:production" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
|
||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "leaphy-client:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "leaphy-client:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "leaphy-client:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "src/test.ts", | ||
"polyfills": "src/polyfills.ts", | ||
"tsConfig": "tsconfig.spec.json", | ||
"karmaConfig": "karma.conf.js", | ||
"assets": [ | ||
"src/favicon.ico", | ||
"src/assets" | ||
], | ||
"styles": [ | ||
"src/styles.scss", | ||
"./node_modules/bootstrap/@fortawesome/fontawesome-free/css/all.css" | ||
], | ||
"scripts": [] | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-eslint/builder:lint", | ||
"options": { | ||
"lintFilePatterns": [ | ||
"src/**/*.ts", | ||
"src/**/*.html" | ||
] | ||
} | ||
}, | ||
"e2e": { | ||
"builder": "@angular-devkit/build-angular:protractor", | ||
"options": { | ||
"protractorConfig": "e2e/protractor.conf.js", | ||
"devServerTarget": "leaphy-client:serve" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "leaphy-client:serve:production" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"defaultProject": "leaphy-client", | ||
"cli": { | ||
"defaultCollection": "@angular-eslint/schematics", | ||
"analytics": "6d8c3839-2848-4328-b7fb-a10f9273fdfc" | ||
} | ||
}, | ||
"defaultProject": "leaphy-client", | ||
"cli": { | ||
"defaultCollection": "@angular-eslint/schematics", | ||
"analytics": "6d8c3839-2848-4328-b7fb-a10f9273fdfc" | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Oops, something went wrong.