@openfn/language-mssql 5.0.1 → 5.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -134,11 +134,7 @@ function execute(...operations) {
134
134
  createConnection,
135
135
  ...operations,
136
136
  cleanupState
137
- )({ ...initialState, ...state }).catch((e) => {
138
- console.error(e);
139
- console.error("Unhandled error in the operations. Exiting process.");
140
- process.exit(1);
141
- });
137
+ )({ ...initialState, ...state });
142
138
  };
143
139
  }
144
140
  function cleanupState(state) {
package/dist/index.js CHANGED
@@ -108,11 +108,7 @@ function execute(...operations) {
108
108
  createConnection,
109
109
  ...operations,
110
110
  cleanupState
111
- )({ ...initialState, ...state }).catch((e) => {
112
- console.error(e);
113
- console.error("Unhandled error in the operations. Exiting process.");
114
- process.exit(1);
115
- });
111
+ )({ ...initialState, ...state });
116
112
  };
117
113
  }
118
114
  function cleanupState(state) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfn/language-mssql",
3
- "version": "5.0.1",
3
+ "version": "5.0.3",
4
4
  "description": "A Microsoft SQL language pack for OpenFn",
5
5
  "exports": {
6
6
  ".": {
@@ -25,7 +25,7 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "tedious": "15.1.0",
28
- "@openfn/language-common": "2.0.1"
28
+ "@openfn/language-common": "2.0.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@openfn/simple-ast": "0.4.1",