Skip to content

Commit

Permalink
chore: update workflow engine npm pkg name (#2610)
Browse files Browse the repository at this point in the history
* chore: update workflow engine npm pkg name

* fix: workflow engine version in package-lock.json
  • Loading branch information
koladilip authored Sep 14, 2023
1 parent 28d265f commit 1a99dd9
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 46 deletions.
118 changes: 75 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"@koa/router": "^12.0.0",
"@ndhoule/extend": "^2.0.0",
"@pyroscope/nodejs": "^0.2.6",
"@rudderstack/workflow-engine": "^0.5.7",
"ajv": "^8.12.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
Expand Down Expand Up @@ -99,7 +100,6 @@
"prom-client": "^14.2.0",
"qs": "^6.11.1",
"rudder-transformer-cdk": "^1.4.11",
"rudder-workflow-engine": "^0.4.7",
"set-value": "^4.1.0",
"sha256": "^0.2.0",
"stacktrace-parser": "^0.1.10",
Expand Down
2 changes: 1 addition & 1 deletion src/cdk/v2/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
TemplateType,
ExecutionBindings,
StepOutput,
} from 'rudder-workflow-engine';
} from '@rudderstack/workflow-engine';

import tags from '../../v0/util/tags';

Expand Down
6 changes: 5 additions & 1 deletion src/cdk/v2/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import path from 'path';
import fs from 'fs/promises';
import { WorkflowExecutionError, WorkflowCreationError, StatusError } from 'rudder-workflow-engine';
import {
WorkflowExecutionError,
WorkflowCreationError,
StatusError,
} from '@rudderstack/workflow-engine';
import logger from '../../logger';
import { generateErrorObject } from '../../v0/util';
import { PlatformError } from '../../v0/util/errorTypes';
Expand Down

0 comments on commit 1a99dd9

Please sign in to comment.