Skip to content

Commit

Permalink
fix(diff-match-patch-ts): update packaging for cleaner es/commonjs/um…
Browse files Browse the repository at this point in the history
…d split fixing issue with vite bundling
  • Loading branch information
rars committed Mar 8, 2024
1 parent 7066a97 commit 58190f4
Show file tree
Hide file tree
Showing 14 changed files with 8,385 additions and 9,433 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [20.x, 21.x]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 6 additions & 0 deletions babel.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
presets: [
["@babel/preset-env", { targets: { node: "current" } }],
"@babel/preset-typescript",
],
};
3 changes: 3 additions & 0 deletions commitlint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
};
1 change: 0 additions & 1 deletion commitlint.config.js

This file was deleted.

10 changes: 10 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// @ts-check

import eslint from "@eslint/js";
import tseslint from "typescript-eslint";

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{ ignores: ["dist/**"] }
);
67 changes: 0 additions & 67 deletions karma.conf.js

This file was deleted.

Loading

0 comments on commit 58190f4

Please sign in to comment.