Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: retejs/rete
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.1
Choose a base ref
...
head repository: retejs/rete
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
14 changes: 0 additions & 14 deletions .eslintrc

This file was deleted.

9 changes: 9 additions & 0 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Build and Push
run-name: Build and Push to dist/${{ github.ref_name }}

on:
workflow_dispatch:

jobs:
push:
uses: retejs/.github/.github/workflows/build-push.yml@main
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -8,3 +8,4 @@ on:
jobs:
ci:
uses: retejs/.github/.github/workflows/ci.yml@main
secrets: inherit
12 changes: 12 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CodeQL

on:
workflow_dispatch:
push:
branches: [ "main", "beta" ]
pull_request:
branches: [ "main", "beta" ]

jobs:
codeql:
uses: retejs/.github/.github/workflows/codeql.yml@main
9 changes: 9 additions & 0 deletions .github/workflows/commit-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Commit linter

on:
pull_request:
branches: [ "main", "beta" ]

jobs:
lint:
uses: retejs/.github/.github/workflows/commit-linter.yml@main
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -6,6 +6,6 @@ on:
branches: [ "main", "beta" ]

jobs:
ci:
release:
uses: retejs/.github/.github/workflows/release.yml@main
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Close stale issues and PRs

on:
workflow_dispatch:
schedule:
- cron: '30 1 * * 0'

jobs:
stale:
uses: retejs/.github/.github/workflows/stale.yml@main
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/update-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Update docs

on:
workflow_dispatch:
push:
branches: [ "main" ]

jobs:
pull:
uses: retejs/.github/.github/workflows/update-docs.yml@main
secrets: inherit
with:
filename: '1.rete'
package: rete
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -4,7 +4,9 @@ node_modules
.sonarlint
.scannerwork
.nyc_output
coverage
/coverage
npm-debug.log
/dist
docs
.rete-cli
.sonar
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## [2.0.5](https://github.com/retejs/rete/compare/v2.0.4...v2.0.5) (2024-08-30)


### Bug Fixes

* build ([1f852d9](https://github.com/retejs/rete/commit/1f852d9e491522264d97de396a30d5f0faf2a681))

## [2.0.4](https://github.com/retejs/rete/compare/v2.0.3...v2.0.4) (2024-08-30)


### Bug Fixes

* update cli and fix linting errors ([d219f95](https://github.com/retejs/rete/commit/d219f95cb0d46f79e8d7f5d70e4afcd578f35455))

## [2.0.3](https://github.com/retejs/rete/compare/v2.0.2...v2.0.3) (2024-01-27)


### Bug Fixes

* **build:** source maps ([121775c](https://github.com/retejs/rete/commit/121775c90aac1db449b30284ba996eed1da1a03c))

## [2.0.2](https://github.com/retejs/rete/compare/v2.0.1...v2.0.2) (2023-07-24)


### Bug Fixes

* **editor:** return copy of array in getNodes/getConnections ([369e85e](https://github.com/retejs/rete/commit/369e85e5d661cca5e9de86326c2245c0e2f38d5b))

## v2.0.0-beta.8

Improve Scope typing: validate signals in `use` method, infer return type in `emit` method
6 changes: 6 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import tseslint from 'typescript-eslint';
import configs from 'rete-cli/configs/eslint.mjs';

export default tseslint.config(
...configs
)
Loading