Skip to content

Commit

Permalink
[chore] update dependencies (#461)
Browse files Browse the repository at this point in the history
* update dependencies

* Fix things
  • Loading branch information
iBicha authored Sep 29, 2024
1 parent 8619683 commit c5e7a2a
Show file tree
Hide file tree
Showing 7 changed files with 96 additions and 52 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

- Nothing worth mentioning yet.

## [0.26.0] - 2024-09-23

### Added
Expand Down
44 changes: 23 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"version": "0.26.0",
"description": "Unofficial YouTube client for Roku",
"devDependencies": {
"@rokucommunity/bslint": "^0.8.24",
"@rokucommunity/bslint": "^0.8.25",
"@types/crypto-js": "^4.2.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.5",
"@types/node": "^22.7.4",
"@types/xml2js": "^0.4.14",
"argparse": "^2.0.1",
"brighterscript": "0.67.6",
"brighterscript-formatter": "^1.7.4",
"brighterscript": "0.67.7",
"brighterscript-formatter": "^1.7.5",
"convert-svg-to-png": "^0.6.4",
"cross-fetch": "^4.0.0",
"crypto-js": "^4.2.0",
Expand All @@ -23,7 +23,7 @@
"json5": "^2.2.3",
"mailparser": "^3.7.1",
"roku-deploy": "^3.12.1",
"rooibos-roku": "5.12.0",
"rooibos-roku": "5.13.0",
"rounded-rect-9patch": "^1.0.1",
"semver": "^7.6.3",
"shelljs": "^0.8.5",
Expand Down
2 changes: 2 additions & 0 deletions playlet-lib/src/source/components/tests/Navigation.spec.bs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "pkg:/source/utils/RemoteKeys.bs"

namespace Tests

@SGNode("NavigationTestNode")
Expand Down
73 changes: 52 additions & 21 deletions playlet-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions playlet-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"ip": "^2.0.1",
"postcss": "^8.4.47",
"svelte": "^4.2.19",
"svelte-check": "^4.0.2",
"svelte-preprocess": "^6.0.2",
"tailwindcss": "^3.4.12",
"terser": "^5.33.0",
"svelte-check": "^4.0.4",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.13",
"terser": "^5.34.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.7",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1"
},
"dependencies": {
Expand Down
5 changes: 5 additions & 0 deletions tools/bs-plugins/Classes/RawCodeStatement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ export class RawCodeStatement extends Statement {
super();
}

public clone() {
return new RawCodeStatement(this.source, this.sourceFile, this.range);
}

public transpile(state: BrsTranspileState) {
//indent every line with the current transpile indent level (except the first line, because that's pre-indented by bsc)
let source = this.source.replace(/\r?\n/g, (match, newline) => {
Expand All @@ -35,6 +39,7 @@ export class RawCodeStatement extends Statement {
source
)];
}

public walk(visitor: WalkVisitor, options: WalkOptions) {
//nothing to walk
}
Expand Down

0 comments on commit c5e7a2a

Please sign in to comment.