mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2026-01-27 11:01:23 +01:00
Our plugin is based on upstream buildbot's console plugin. Upstream moved away from coffescript and made a number of other fixes and improvements. Run decaffeinate on the coffeescript to translate to angularjs and then convert to the new build environment and standards. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
871 B
JSON
26 lines
871 B
JSON
{
|
|
"name": "yocto-console-view",
|
|
"plugin_name": "console_view",
|
|
"private": true,
|
|
"main": "yocto_console_view/static/scripts.js",
|
|
"style": "yocto_console_view/static/styles.js",
|
|
"scripts": {
|
|
"build": "rimraf yocto_console_view/static && webpack --bail --progress --profile --env prod",
|
|
"build-dev": "rimraf yocto_console_view/static && webpack --bail --progress --profile --env dev",
|
|
"dev": "webpack --bail --progress --profile --watch --env dev"
|
|
},
|
|
"devDependencies": {
|
|
"angular-mocks": "^1.7.9",
|
|
"buildbot-build-common": ">0.1",
|
|
"lodash": "^4.17.11",
|
|
"rimraf": "^2.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@uirouter/angularjs": "^1.0.15",
|
|
"angular": "^1.7.9",
|
|
"angular-animate": "^1.7.9",
|
|
"buildbot-data-js": ">0.1",
|
|
"guanlecoja-ui": ">0.1"
|
|
}
|
|
}
|