Skip to content

Commit

Permalink
first stab at moving over to ropm
Browse files Browse the repository at this point in the history
  • Loading branch information
georgejecook committed Sep 27, 2020
1 parent 2101474 commit 81b9e8f
Show file tree
Hide file tree
Showing 113 changed files with 9,037 additions and 12,404 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,10 @@ rooibosDist.brs
yarn.lock
yarn-error.log
/outRun/
node_modules/
out
**/roku_modules/
package-lock.json

!.vscode
.vscode/.env
42 changes: 42 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "bashdb",
"request": "launch",
"name": "Build",
"cwd": "${workspaceFolder}",
"program": "npm run build",
"args": []
},
{
"type": "brightscript",
"request": "launch",
"name": "TEST",
"internalConsoleOptions": "neverOpen",
"envFile": "${workspaceFolder}/devstuff/.env",
"preLaunchTask": "buildTests",
"host": "${env:ROKU_DEV_TARGET}",
"password": "${env:ROKU_DEVPASSWORD}",
"rootDir": "${workspaceFolder}/build",
// "debugServer": 4711,
"sourceDirs": [
"${workspaceFolder}/frameworkTests"
],
"files": [
"*",
"*.*",
"**/*.*",
"!*.zip"
],
"consoleOutput": "normal",
"stopOnEntry": false,
"retainDeploymentArchive": true,
"retainStagingFolder": true,
"stopDebuggerOnAppExit": true
},
]
}
16 changes: 16 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"cSpell.words": [
"Roadmap",
"brightscript",
"rooibos"
],
"jira-plugin.workingProject": "",
"workbench.colorCustomizations": {
"statusBar.background": "#551A8B",
"statusBar.debuggingBackground": "#551A8B",
"panelTitle.activeBorder": "#ff0000",
"activityBar.background": "#0E3047",
"titleBar.activeBackground": "#134464",
"titleBar.activeForeground": "#F6FAFD"
}
}
32 changes: 32 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "brightscript",
"request": "launch",
"name": "Tests",
"stopOnEntry": false,
"preLaunchTask": "buildTests",
"envFile": "${workspaceFolder}/.vscode/.env",
"host": "${env:ROKU_DEV_TARGET}",
"password": "${env:ROKU_DEVPASSWORD}",
"rootDir": "${workspaceFolder}/tests/dist",
"sourceDirs": [
"${workspaceFolder}/src",
"${workspaceFolder}/tests/src"
],
"files": [
"manifest",
"source/**/*.*",
"components/**/*.*",
"images/**/*.*",
"font/**/*.*",
"!*.zip",
"!**/*.zip"
],
}
]
}
26 changes: 0 additions & 26 deletions ROADMAP.md

This file was deleted.

1 change: 0 additions & 1 deletion VERSION

This file was deleted.

237 changes: 0 additions & 237 deletions app.mk

This file was deleted.

Loading

0 comments on commit 81b9e8f

Please sign in to comment.