Skip to content

Commit

Permalink
Merge branch 'v4' into change-docs
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/RokuDeploy.spec.ts
  • Loading branch information
MilapNaik committed May 1, 2024
1 parent 289e326 commit 6e19ff1
Show file tree
Hide file tree
Showing 7 changed files with 7,488 additions and 646 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
- uses: actions/setup-node@master
with:
node-version: "14.18.1"
architecture: 'x64' # fix for macos-latest
- run: cd src && cd .. #trying to fix "ENOENT: no such file or directory, uv_cwd" error
- run: npm ci
- run: npm run build
- run: npm run lint
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- eliminate top index functions ([#144](https://github.com/rokucommunity/roku-deploy/pull/144))



## [3.12.0](https://github.com/rokucommunity/roku-deploy/compare/v3.11.3...v3.12.0) - 2024-03-01
### Changed
- Support overriding various package upload form data ([#136](https://github.com/rokucommunity/roku-deploy/pull/136))



## [3.11.3](https://github.com/rokucommunity/roku-deploy/compare/v3.11.2...v3.11.3) - 2024-02-29
### Fixed
- Retry the convertToSquahsfs request to mitigate the HPE_INVALID_CONSTANT error ([#145](https://github.com/rokucommunity/roku-deploy/pull/145))



## [3.11.2](https://github.com/rokucommunity/roku-deploy/compare/v3.11.1...v3.11.2) - 2023-12-20
### Changed
- Update wrong host password error message ([#134](https://github.com/rokucommunity/roku-deploy/pull/134))



## [3.11.1](https://github.com/rokucommunity/roku-deploy/compare/v3.11.0...v3.11.1) - 2023-11-30
### Fixed
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,8 @@ The object structure is as follows:
}
```
#### { src; dest } Object Rules
- if `src` is a non-glob path to a single file, then `dest` should include the filename and extension. For example:
- if `src` is a non-glob path to a single file, then `dest` should include the filename and extension. For example:
`{ src: "lib/Promise/promise.brs", dest: "source/promise.brs"}`
- if `src` is a glob pattern, then `dest` should be a path to the folder in the output directory. For example:
`{ src: "lib/*.brs", dest: "source/lib"}`
Expand Down
Loading

0 comments on commit 6e19ff1

Please sign in to comment.