lambder 1.0.147 → 1.0.148

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.
@@ -1,5 +1,3 @@
1
- import { createRequire } from 'module';
2
- const require = createRequire(import.meta.url);
3
1
  export default class LambderMSW {
4
2
  apiPath;
5
3
  apiVersion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lambder",
3
- "version": "1.0.147",
3
+ "version": "1.0.148",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/LambderMSW.ts CHANGED
@@ -1,9 +1,6 @@
1
- import { createRequire } from 'module';
2
1
  import type { ApiContractShape } from './LambderApiContract';
3
2
  import type { LambderApiResponse } from './LambderResponseBuilder';
4
3
 
5
- const require = createRequire(import.meta.url);
6
-
7
4
  // MSW types - these will be resolved at runtime when msw is installed
8
5
  type RequestHandler = any;
9
6