Skip to content

Commit

Permalink
Merge pull request #36 from rycont/webpack-compatibility
Browse files Browse the repository at this point in the history
chore: remove circular imports
  • Loading branch information
rycont authored Nov 8, 2024
2 parents cbe2ff6 + 39d29c8 commit cf077a7
Show file tree
Hide file tree
Showing 16 changed files with 774 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: deno lint

- name: Run tests
run: deno test --allow-read
run: deno task test

- name: Get version from deno.json
id: get_version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
run: deno lint

- name: Run tests
run: deno test --allow-read
run: deno task test
7 changes: 7 additions & 0 deletions .madgerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
7 changes: 6 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"tasks": {
"coverage": "rm -rf ./cov && deno test --allow-read --parallel --coverage=cov && deno coverage --detailed ./cov && rm -rf ./cov",
"coverage-list": "rm -rf ./cov && deno test --allow-read --parallel --coverage=cov && deno coverage ./cov && rm -rf ./cov",
"test": "deno run -A npm:madge --circular --extensions ts ./ && deno test --allow-read --parallel",
"typedoc": "deno run --allow-read --allow-write --allow-env --allow-run ./create-docs.ts",
"vitepress-dev": "deno run -A npm:vitepress dev docs",
"vitepress-build": "deno run -A npm:vitepress build docs",
Expand All @@ -25,11 +26,15 @@
"rules": {
"exclude": [
"no-explicit-any"
],
"include": [],
"tags": [
"recommended"
]
}
},
"name": "@yaksok-ts/core",
"version": "0.1.11",
"version": "0.1.12",
"exports": "./src/index.ts",
"nodeModulesDir": "auto"
}
Loading

0 comments on commit cf077a7

Please sign in to comment.