Skip to content

Commit 8a45108

Browse files
authored
Merge pull request #886 from laboperator-gmbh/chore/transfer
transfer repository
2 parents 4e762e5 + 509ea49 commit 8a45108

File tree

9 files changed

+821
-627
lines changed

9 files changed

+821
-627
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
extends: '@labforward/eslint-config-node',
2+
extends: '@laboperator-gmbh/eslint-config-node',
33
ignorePatterns: ['dist'],
44
overrides: [
55
{

.github/dependabot.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ updates:
88
timezone: 'Europe/Berlin'
99
rebase-strategy: disabled
1010
labels:
11-
- "dependencies"
12-
- "automerge"
11+
- 'dependencies'
12+
- 'automerge'
1313
- "kodiak: merge.method = 'squash'"
1414
ignore:
1515
# Need to wait until every plugin support eslint 9
@@ -25,21 +25,21 @@ updates:
2525
groups:
2626
babel:
2727
patterns:
28-
- "@babel/*"
29-
- "babel-*"
30-
- "browserslist"
28+
- '@babel/*'
29+
- 'babel-*'
30+
- 'browserslist'
3131
eslint:
3232
patterns:
33-
- "@eslint-*"
34-
- "@eslint/*"
35-
- "eslint-*"
36-
- "eslint"
33+
- '@eslint-*'
34+
- '@eslint/*'
35+
- 'eslint-*'
36+
- 'eslint'
3737
jest:
3838
patterns:
39-
- "@jest/"
40-
- "jest-*"
41-
- "jest"
42-
- "@types/jest"
43-
labforward:
39+
- '@jest/'
40+
- 'jest-*'
41+
- 'jest'
42+
- '@types/jest'
43+
laboperator-gmbh:
4444
patterns:
45-
- "@labforward/*"
45+
- '@laboperator-gmbh/*'

.prettierrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('@labforward/config/prettier');
1+
module.exports = require('@laboperator-gmbh/config/prettier');

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Changelog
22

3-
The changelog is now kept with each [Github Release](https://github.com/labforward/laboperator-workflow-schema/releases).
3+
The changelog is now kept with each [Github Release](https://github.com/laboperator-gmbh/workflow-schema/releases).

CODEOWNERS

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1 @@
1-
# This is a comment.
2-
# Each line is a file pattern followed by one or more owners.
3-
4-
# These owners will be the default owners for everything in
5-
# the repo. Unless a later match takes precedence,
6-
# These users will be requested for
7-
# review when someone opens a pull request.
8-
* @kgrhartlage @ignatiusreza
9-
10-
# Order is important; the last matching pattern takes the most
11-
# precedence. When someone opens a pull request that only
12-
# modifies JS files, only @js-owner and not the global
13-
# owner(s) will be requested for a review.
14-
# *.js @js-owner
15-
16-
# You can also use email addresses if you prefer. They'll be
17-
# used to look up users just like we do for commit author
18-
# emails.
19-
20-
21-
# In this example, @doctocat owns any files in the build/logs
22-
# directory at the root of the repository and any of its
23-
# subdirectories.
24-
# /build/logs/ @doctocat
25-
26-
# The `docs/*` pattern will match files like
27-
# `docs/getting-started.md` but not further nested files like
28-
# `docs/build-app/troubleshooting.md`.
29-
30-
31-
# In this example, @octocat owns any file in an apps directory
32-
# anywhere in your repository.
33-
# apps/ @octocat
34-
35-
# In this example, @doctocat owns any file in the `/docs`
36-
# directory in the root of your repository.
37-
# /docs/ @doctocat
1+
@laboperator-gmbh/application

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Laboperator workflows are described by template files referred to as _Workflow T
2626

2727
## Language Server Validation
2828

29-
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.
29+
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.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "@labforward/laboperator-workflow-schema",
2+
"name": "@laboperator-gmbh/workflow-schema",
33
"version": "0.0.1",
44
"description": "Laboperator Workflow Schemas and template validation.",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/labforward/laboperator-workflow-schema.git"
7+
"url": "github:laboperator-gmbh/workflow-schema"
88
},
99
"license": "Apache-2.0",
10-
"author": "labforward GmbH",
10+
"author": "Laboperator GmbH",
1111
"main": "dist/index.js",
1212
"scripts": {
1313
"build": "rm -rf dist && yarn build:schema && tsc -p tsconfig.build.json && cp src/types.d.ts dist",
@@ -41,8 +41,8 @@
4141
},
4242
"devDependencies": {
4343
"@babel/core": "^7.28.5",
44-
"@labforward/config": "^0.1.8",
45-
"@labforward/eslint-config-node": "^0.1.8",
44+
"@laboperator-gmbh/config": "~0.1.10",
45+
"@laboperator-gmbh/eslint-config-node": "~0.1.10",
4646
"@types/jest": "^30.0.0",
4747
"@types/lodash": "^4.17.21",
4848
"@types/node": "^24.10.1",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "@labforward/config/tsconfig.json",
2+
"extends": "@laboperator-gmbh/config/tsconfig.json",
33
"compilerOptions": {
44
"baseUrl": ".",
55
"declaration": true,

0 commit comments

Comments
 (0)