Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
interval: 'monthly'
groups:
all:
patterns:
Expand Down
19 changes: 11 additions & 8 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,24 @@
"useTabs": true,
"singleQuote": true,
"experimentalSortImports": {
"newlinesBetween": false,
"groups": [
["side-effect"],
["builtin"],
["external", "external-type"],
["internal", "internal-type"],
["parent", "parent-type"],
["sibling", "sibling-type"],
["index", "index-type"]
"type-import",
["value-builtin", "value-external"],
"type-internal",
"value-internal",
["type-parent", "type-sibling", "type-index"],
["value-parent", "value-sibling", "value-index"],
"unknown"
]
},
"embeddedLanguageFormatting": "auto",
"overrides": [
{
"files": ["*.md", "*.yaml", "*.yml"],
"options": {
"tabWidth": 2
"tabWidth": 2,
"useTabs": false
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Or include the following lines directly in your HTML file:

```html
<script type="module">
import { Pointeract } from 'https://unpkg.com/pointeract';
import { Pointeract } from 'https://unpkg.com/pointeract';
</script>
```

Expand Down
1 change: 0 additions & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { resolve } from 'node:path';

import { defineConfig } from 'vitepress';
import { groupIconMdPlugin, groupIconVitePlugin } from 'vitepress-plugin-group-icons';
import { ThemeConfig } from 'vitepress-theme-trito';
Expand Down
1 change: 0 additions & 1 deletion docs/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@

import './style.css';
import 'virtual:group-icons.css';

import Trito from 'vitepress-theme-trito';
export default Trito;
2 changes: 1 addition & 1 deletion docs/en/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Or include the following lines directly in your HTML file:

```html
<script type="module">
import { Pointeract } from 'https://unpkg.com/pointeract';
import { Pointeract } from 'https://unpkg.com/pointeract';
</script>
```

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"happy-dom": "^20.6.1",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"oxlint-tsgolint": "^0.12.2",
"happy-dom": "^20.6.3",
"oxfmt": "^0.33.0",
"oxlint": "^1.48.0",
"oxlint-tsgolint": "^0.14.0",
"terser": "^5.46.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
Expand Down
Loading