Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
extends: '@labforward/eslint-config-node',
extends: '@laboperator-gmbh/eslint-config-node',
ignorePatterns: ['dist'],
overrides: [
{
Expand Down
30 changes: 15 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ updates:
timezone: 'Europe/Berlin'
rebase-strategy: disabled
labels:
- "dependencies"
- "automerge"
- 'dependencies'
- 'automerge'
- "kodiak: merge.method = 'squash'"
ignore:
# Need to wait until every plugin support eslint 9
Expand All @@ -25,21 +25,21 @@ updates:
groups:
babel:
patterns:
- "@babel/*"
- "babel-*"
- "browserslist"
- '@babel/*'
- 'babel-*'
- 'browserslist'
eslint:
patterns:
- "@eslint-*"
- "@eslint/*"
- "eslint-*"
- "eslint"
- '@eslint-*'
- '@eslint/*'
- 'eslint-*'
- 'eslint'
jest:
patterns:
- "@jest/"
- "jest-*"
- "jest"
- "@types/jest"
labforward:
- '@jest/'
- 'jest-*'
- 'jest'
- '@types/jest'
laboperator-gmbh:
patterns:
- "@labforward/*"
- '@laboperator-gmbh/*'
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('@labforward/config/prettier');
module.exports = require('@laboperator-gmbh/config/prettier');
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Changelog

The changelog is now kept with each [Github Release](https://github.com/labforward/laboperator-workflow-schema/releases).
The changelog is now kept with each [Github Release](https://github.com/laboperator-gmbh/workflow-schema/releases).
38 changes: 1 addition & 37 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,37 +1 @@
# This is a comment.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# These users will be requested for
# review when someone opens a pull request.
* @kgrhartlage @ignatiusreza

# Order is important; the last matching pattern takes the most
# precedence. When someone opens a pull request that only
# modifies JS files, only @js-owner and not the global
# owner(s) will be requested for a review.
# *.js @js-owner

# You can also use email addresses if you prefer. They'll be
# used to look up users just like we do for commit author
# emails.
# *.go [email protected]

# In this example, @doctocat owns any files in the build/logs
# directory at the root of the repository and any of its
# subdirectories.
# /build/logs/ @doctocat

# The `docs/*` pattern will match files like
# `docs/getting-started.md` but not further nested files like
# `docs/build-app/troubleshooting.md`.
# docs/* [email protected]

# In this example, @octocat owns any file in an apps directory
# anywhere in your repository.
# apps/ @octocat

# In this example, @doctocat owns any file in the `/docs`
# directory in the root of your repository.
# /docs/ @doctocat
@laboperator-gmbh/application
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ Laboperator workflows are described by template files referred to as _Workflow T

## Language Server Validation

To improve the experience of writing workflow templates, you can enable validation against the workflow schemas in your text editor by associating files with a JSON schema. See the [WIKI page](https://github.com/labforward/laboperator-workflow-schema/wiki) for instructions.
To improve the experience of writing workflow templates, you can enable validation against the workflow schemas in your text editor by associating files with a JSON schema. See the [WIKI page](https://github.com/laboperator-gmbh/workflow-schema/wiki) for instructions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@labforward/laboperator-workflow-schema",
"name": "@laboperator-gmbh/workflow-schema",
"version": "0.0.1",
"description": "Laboperator Workflow Schemas and template validation.",
"repository": {
"type": "git",
"url": "https://github.com/labforward/laboperator-workflow-schema.git"
"url": "github:laboperator-gmbh/workflow-schema"
},
"license": "Apache-2.0",
"author": "labforward GmbH",
"author": "Laboperator GmbH",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && yarn build:schema && tsc -p tsconfig.build.json && cp src/types.d.ts dist",
Expand Down Expand Up @@ -41,8 +41,8 @@
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@labforward/config": "^0.1.8",
"@labforward/eslint-config-node": "^0.1.8",
"@laboperator-gmbh/config": "~0.1.10",
"@laboperator-gmbh/eslint-config-node": "~0.1.10",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.21",
"@types/node": "^24.10.1",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@labforward/config/tsconfig.json",
"extends": "@laboperator-gmbh/config/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
Expand Down
Loading