diff --git a/dist/components/rum/RumViewScope.brs b/dist/components/rum/RumViewScope.brs index 2f87a1f..c64537e 100644 --- a/dist/components/rum/RumViewScope.brs +++ b/dist/components/rum/RumViewScope.brs @@ -200,9 +200,10 @@ end sub ' @param writer (object) the writer node (see WriterTask component) ' ---------------------------------------------------------------- sub addAction(action as object, writer as object) + ' TODO RUMM-2586 handle mutliple consecutive actions if (action.type = "custom") sendCustomAction(action.target, writer) - else ' TODO RUMM-2586 handle mutliple consecutive actions + else m.top.activeAction = CreateObject("roSGNode", "RumActionScope") m.top.activeAction.target = action.target m.top.activeAction.actionType = action.type diff --git a/library/bsconfig.json b/library/bsconfig.json index 5ac29ae..f38a759 100644 --- a/library/bsconfig.json +++ b/library/bsconfig.json @@ -9,8 +9,8 @@ "@rokucommunity/bslint" ], "createPackage": false, - "retainStagingFolder": true, - "stagingFolderPath": "../dist", + "retainStagingDir": true, + "stagingDir": "../dist", "diagnosticFilters": [ "source/roku_modules/**/*.*" ], diff --git a/library/components/rum/RumViewScope.bs b/library/components/rum/RumViewScope.bs index 016e1c5..1d6d88a 100644 --- a/library/components/rum/RumViewScope.bs +++ b/library/components/rum/RumViewScope.bs @@ -208,10 +208,10 @@ end sub ' @param writer (object) the writer node (see WriterTask component) ' ---------------------------------------------------------------- sub addAction(action as object, writer as object) + ' TODO RUMM-2586 handle mutliple consecutive actions if (action.type = "custom") sendCustomAction(action.target, writer) else - ' TODO RUMM-2586 handle mutliple consecutive actions m.top.activeAction = CreateObject("roSGNode", "RumActionScope") m.top.activeAction.target = action.target m.top.activeAction.actionType = action.type diff --git a/library/package.json b/library/package.json index 0112b95..c4cb182 100644 --- a/library/package.json +++ b/library/package.json @@ -9,6 +9,6 @@ }, "devDependencies": { "@rokucommunity/bslint": "^0.7.4", - "brighterscript": "^0.59.0" + "brighterscript": "^0.60.6" } } \ No newline at end of file diff --git a/sample/bsconfig.json b/sample/bsconfig.json index fdaa6e8..b3778d1 100644 --- a/sample/bsconfig.json +++ b/sample/bsconfig.json @@ -13,6 +13,7 @@ "@rokucommunity/bslint" ], "createPackage": true, + "retainStagingDir": true, "diagnosticFilters": [ "components/roku_modules/**/*.*", "source/roku_modules/**/*.*", diff --git a/sample/components/screens/VideoScreen.bs b/sample/components/screens/VideoScreen.bs index 7d678cf..6235e5b 100644 --- a/sample/components/screens/VideoScreen.bs +++ b/sample/components/screens/VideoScreen.bs @@ -2,7 +2,6 @@ ' This product includes software developed at Datadog (https://www.datadoghq.com/). ' Copyright 2022-Today Datadog, Inc. - import "pkg:/source/roku_modules/datadogroku/datadogSdk.brs" import "pkg:/source/roku_modules/datadogroku/internalLogger.brs" import "pkg:/source/roku_modules/datadogroku/timeUtils.brs" diff --git a/sample/package.json b/sample/package.json index 4d0c25f..4221180 100644 --- a/sample/package.json +++ b/sample/package.json @@ -9,7 +9,7 @@ }, "devDependencies": { "@rokucommunity/bslint": "^0.7.4", - "brighterscript": "^0.59.0" + "brighterscript": "^0.60.6" }, "dependencies": { "datadog-roku": "../" diff --git a/test/bsconfig.json b/test/bsconfig.json index 88da7f1..1e337d5 100644 --- a/test/bsconfig.json +++ b/test/bsconfig.json @@ -12,7 +12,7 @@ "@rokucommunity/bslint" ], "createPackage": true, - "retainStagingFolder": true, + "retainStagingDir": true, "diagnosticFilters": [ "components/roku_modules/**/*.*", "source/roku_modules/**/*.*", diff --git a/test/package.json b/test/package.json index 4d0c25f..4221180 100644 --- a/test/package.json +++ b/test/package.json @@ -9,7 +9,7 @@ }, "devDependencies": { "@rokucommunity/bslint": "^0.7.4", - "brighterscript": "^0.59.0" + "brighterscript": "^0.60.6" }, "dependencies": { "datadog-roku": "../" diff --git a/tools/copyright/check_copyright.sh b/tools/copyright/check_copyright.sh index 14fe561..09739c0 100755 --- a/tools/copyright/check_copyright.sh +++ b/tools/copyright/check_copyright.sh @@ -17,7 +17,6 @@ function files { FILES_WITH_MISSING_LICENSE="" - for file in $(files); do if ! grep -q "Apache License Version 2.0" "$file"; then FILES_WITH_MISSING_LICENSE="${FILES_WITH_MISSING_LICENSE}\n${file}"