Skip to content

Commit 80ace78

Browse files
committed
Make Universal again
1 parent b15160d commit 80ace78

23 files changed

+823
-356
lines changed

examples/nodejs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Logger, ILogObj } from "../../src/index.node";
1+
import { Logger, ILogObj } from "../../src/index";
22

33
class MyClass {
44
private readonly _logger: Logger<ILogObj> = new Logger({

examples/nodejs/index2.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import { BaseLogger } from "../../src/index.js";
2-
import { Logger } from "../../src/index.node.js";
3-
import NodeRuntime from "../../src/runtime/nodejs/index";
1+
import { Logger, BaseLogger } from "../../src/index.js";
2+
import { NodeRuntime } from "../../src/index";
43

54
const defaultLogObject: {
65
name: string;

jest-puppeteer.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
launch: {
33
dumpio: true,
4-
headless: process.env.HEADLESS !== "false",
4+
headless: "new",
55
},
66
server: {
77
command: "npm run test-puppeteer-serve",

0 commit comments

Comments
 (0)