@aimeloic/monkey-tester 3.0.1 → 3.0.2
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/htmlTemplate.js +1 -1
- package/index.js +5 -11
- package/monkey.js +2 -2
- package/package.json +1 -1
package/htmlTemplate.js
CHANGED
package/index.js
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { endtesterExpress } from './monkey.js';
|
|
2
2
|
|
|
3
|
-
//
|
|
4
|
-
|
|
3
|
+
// Named export for: import { endtesterExpress } from '@aimeloic/monkey-tester'
|
|
4
|
+
export { endtesterExpress };
|
|
5
5
|
|
|
6
|
-
//
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
// 3. Compatibility layer for ES module environments using: import { endtesterExpress } from '...'
|
|
10
|
-
module.exports.endtesterExpress = endtesterExpress;
|
|
11
|
-
|
|
12
|
-
// 4. Compatibility layer for ES module environments using: import monkeyTester from '...'
|
|
13
|
-
module.exports.default = { endtesterExpress };
|
|
6
|
+
// Default export for: import monkeyTester from '@aimeloic/monkey-tester'
|
|
7
|
+
export default { endtesterExpress };
|
package/monkey.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
import { getHtmlTemplate } from './htmlTemplate.js';
|
|
4
4
|
|
|
5
5
|
// ─── Field type inference ─────────────────────────────────────────────────────
|
|
6
6
|
function inferType(name) {
|
|
@@ -195,4 +195,4 @@ function endtesterExpress() {
|
|
|
195
195
|
};
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
-
|
|
198
|
+
export { endtesterExpress };
|