@514labs/moose-lib 0.6.239-ci-1-g4a0cac87 → 0.6.239-ci-1-g1d19a0e4

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.
@@ -2178,7 +2178,7 @@ var SqlResource = class {
2178
2178
  */
2179
2179
  constructor(name, setup, teardown, options) {
2180
2180
  const sqlResources = getMooseInternal().sqlResources;
2181
- if (sqlResources.has(name)) {
2181
+ if (!isClientOnlyMode && sqlResources.has(name)) {
2182
2182
  throw new Error(`SqlResource with name ${name} already exists`);
2183
2183
  }
2184
2184
  sqlResources.set(name, this);