@openfn/language-mssql 5.0.2 → 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 +1 -5
- package/dist/index.js +1 -5
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -134,11 +134,7 @@ function execute(...operations) {
|
|
|
134
134
|
createConnection,
|
|
135
135
|
...operations,
|
|
136
136
|
cleanupState
|
|
137
|
-
)({ ...initialState, ...state })
|
|
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 })
|
|
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) {
|