Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v4 #124

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open

v4 #124

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
b121350
Update README.md
TwitchBronBron Nov 6, 2023
e3746e3
Merge branch 'master' into v4
MilapNaik Nov 17, 2023
fa8db4e
Merge branch 'master' into v4
MilapNaik Nov 29, 2023
67684d4
Adding individual interfaces (#126)
MilapNaik Dec 1, 2023
2ab649e
Merge branch 'master' into v4
TwitchBronBron Dec 1, 2023
d4c1583
Fix tests
TwitchBronBron Dec 1, 2023
63d3b7e
Remove retain staging folder which was deprecated (#130)
MilapNaik Dec 4, 2023
94492b9
Don't normalize file patterns (#131)
MilapNaik Dec 14, 2023
7a629e1
Bug with {src;dest} object handling (#135)
MilapNaik Jan 17, 2024
8af51a1
Add cli commands (#139)
MilapNaik Feb 6, 2024
4dfe850
Eliminate top index functions (#144)
MilapNaik Feb 6, 2024
e59ac91
Add cli commands and rename roku-deploy functions, reorganize functio…
TwitchBronBron Mar 20, 2024
ab389e0
Throw exceptions on missing options (#156)
MilapNaik Mar 26, 2024
9ba9034
Upgrade typescript & other packages (#157)
MilapNaik Apr 1, 2024
d29e26f
Add cwd option (#158)
MilapNaik Apr 16, 2024
1872508
Prep build.yml for alpha releases
TwitchBronBron Apr 16, 2024
54549ac
Update changelog for v4.0.0-alpha.0
TwitchBronBron Apr 16, 2024
2d04a45
4.0.0-alpha.0
TwitchBronBron Apr 16, 2024
b738829
Small tweaks to zip
TwitchBronBron Apr 16, 2024
9275636
Merge master to v4 (#163)
MilapNaik Apr 30, 2024
0ec11a7
Change documentation (#162)
MilapNaik May 1, 2024
ebfbe98
Update files array (#164)
MilapNaik May 6, 2024
8aa6800
merge master for github architecture latest changes
MilapNaik May 6, 2024
0534143
No changes made:
MilapNaik May 7, 2024
3b783e3
Enhanced logging levels (#168)
MilapNaik May 15, 2024
3479249
Add new v4 section and table of contents (#166)
MilapNaik May 16, 2024
3b04164
Update changelog for v4.0.0-alpha.1
TwitchBronBron May 17, 2024
bf28184
4.0.0-alpha.1
TwitchBronBron May 17, 2024
4fa9b5c
forgot apostrophe in readme
MilapNaik May 17, 2024
14b7eed
Add interactive remote mode (#169)
triwav Jun 10, 2024
785390b
Fix some issues in the readme
TwitchBronBron Aug 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ module.exports = {
project: './tsconfig.json'
},
plugins: [
'@typescript-eslint'
'@typescript-eslint',
'import'
],
extends: [
'eslint:all',
Expand All @@ -23,6 +24,7 @@ module.exports = {
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/init-declarations': 'off',
'@typescript-eslint/lines-around-comment': 'off',
'@typescript-eslint/member-ordering': 'off',
"@typescript-eslint/naming-convention": 'off',
'@typescript-eslint/no-base-to-string': 'off',
Expand Down Expand Up @@ -52,6 +54,8 @@ module.exports = {
'error',
'always'
],
'@typescript-eslint/prefer-nullish-coalescing': 'off',
"@typescript-eslint/prefer-optional-chain": 'off',
'@typescript-eslint/prefer-readonly': 'off',
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
'@typescript-eslint/promise-function-async': 'off',
Expand Down Expand Up @@ -90,11 +94,11 @@ module.exports = {
'function-paren-newline': 'off',
'guard-for-in': 'off',
'id-length': 'off',
'import/no-duplicates': 'error',
'indent': 'off',
'init-declarations': 'off',
'line-comment-position': 'off',
'linebreak-style': 'off',
'lines-around-comment': 'off',
'lines-between-class-members': 'off',
'max-classes-per-file': 'off',
'max-depth': 'off',
Expand All @@ -112,6 +116,7 @@ module.exports = {
'no-constant-condition': 'off',
'no-console': 'off',
'no-continue': 'off',
'no-duplicate-imports': 'off',
'no-else-return': 'off',
'no-empty': 'off',
'no-implicit-coercion': 'off',
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,7 @@ jobs:
with:
asset_paths: '["./*.tgz"]'

#If there's a dash followed by an alpha character, this is a prerelease and should be tagged "next". Otherwise tag as "latest"
- run: if [[ "${{ github.ref }}" =~ -[a-zA-Z] ]]; then echo "DIST_TAG=next" >> $GITHUB_ENV; else echo "DIST_TAG=latest" >> $GITHUB_ENV; fi
#upload to npm
- run: npm publish
- run: npm publish --tag ${{env.DIST_TAG}}
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [4.0.0-alpha.1](https://github.com/rokucommunity/roku-deploy/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) - 2024-05-17
### Changed
- Enhanced logging levels ([#168](https://github.com/rokucommunity/roku-deploy/pull/168))
- Update files array ([#164](https://github.com/rokucommunity/roku-deploy/pull/164))
- Change documentation ([#162](https://github.com/rokucommunity/roku-deploy/pull/162))



## [4.0.0-alpha.0](https://github.com/rokucommunity/roku-deploy/compare/v3.11.1...v4.0.0-alpha.0) - 2024-04-16
### Added
- individual interfaces for every rokuDeploy function ([#126](https://github.com/rokucommunity/roku-deploy/pull/126))
- cli commands ([#139](https://github.com/rokucommunity/roku-deploy/pull/139))
- cli commands and rename roku-deploy functions, reorganize functions ([#142](https://github.com/rokucommunity/roku-deploy/pull/142))
- cwd option ([#158](https://github.com/rokucommunity/roku-deploy/pull/158))
### Changed
- don't normalize file patterns ([#131](https://github.com/rokucommunity/roku-deploy/pull/131))
- Throw exceptions on missing options ([#156](https://github.com/rokucommunity/roku-deploy/pull/156))
- upgrade typescript & other packages ([#157](https://github.com/rokucommunity/roku-deploy/pull/157))
### Fixed
- bug with `{src;dest}` object handling ([#135](https://github.com/rokucommunity/roku-deploy/pull/135))
### Removed
- removed deprecated `retainStagingFolder` property ([#130](https://github.com/rokucommunity/roku-deploy/pull/130))
- 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))
Expand Down
Loading