Skip to content

Commit

Permalink
Classes are so back.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmacarthur committed Nov 26, 2023
1 parent d0dce60 commit 3f38fa7
Show file tree
Hide file tree
Showing 33 changed files with 3,967 additions and 12,556 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"publish": "lerna bootstrap && lerna publish",
"bootstrap": "lerna bootstrap --force-local",
"test": "lerna run test",
"prettier": "prettier --write \"./packages/**/*.{md,js,tsx,ts}\""
"format": "prettier --write \"./packages/**/*.{md,js,tsx,ts}\""
},
"lint-staged": {
"*.{js,md}": "prettier --write"
"*.{js,ts,tsx,md}": "format --write"
},
"devDependencies": {
"husky": "^8.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/typeit/__tests__/Queue.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("add()", () => {
});

test("It should add multiple steps passed at once.", () => {
let func = jest.fn();
let func = vi.fn();
queue.add([{ func }, { func }, { func }]);

let items = queue.getItems();
Expand Down
Loading

0 comments on commit 3f38fa7

Please sign in to comment.