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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ demos/h3/data
.nx/cache
.nx/workspace-data
/packages/markdown-it-plugins/docs/obt/data
/packages/vite-plugins/tests/js/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "packages/vite-plugins/refs/dojo-webpack-plugin"]
path = packages/vite-plugins/refs/dojo-webpack-plugin
url = https://github.com/OpenNTF/dojo-webpack-plugin.git
3,562 changes: 957 additions & 2,605 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@vitest/browser-playwright": "4.1.10",
"@vitest/coverage-v8": "4.1.10",
"cross-env": "10.1.0",
"eslint": "10.8.0",
"eslint": "10.8.1",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.9.0",
"jiti": "2.7.0",
Expand All @@ -60,7 +60,7 @@
"rimraf": "6.1.3",
"typescript": "npm:@typescript/typescript6@6.0.2",
"typescript-eslint": "8.66.0",
"vite": "8.2.0",
"vite": "8.2.1",
"vitepress": "1.6.4",
"vitest": "4.1.10",
"axios": "1.19.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"esbuild-plugin-inline-css": "0.0.1",
"esbuild-plugin-umd-wrapper": "3.0.0",
"fzstd": "0.1.1",
"vite": "8.2.0",
"vite": "8.2.1",
"vite-plugin-css-injected-by-js": "5.0.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/map/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"devDependencies": {
"@hpcc-js/esbuild-plugins": "^1.9.7",
"@googlemaps/js-api-loader": "2.1.1",
"@types/google.maps": "3.65.4",
"@types/google.maps": "3.65.5",
"@types/leaflet-draw": "1.0.13",
"@types/leaflet.heat": "0.2.5",
"@types/leaflet.markercluster": "1.5.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/markdown-it-plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"d3-dsv": "3.0.1",
"d3-fetch": "3.0.1",
"dotenv": "17.4.2",
"tsx": "4.23.5"
"tsx": "4.23.11"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/observablehq-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"devDependencies": {
"@hpcc-js/esbuild-plugins": "^1.9.7",
"@observablehq/notebook-kit": "2.1.9",
"@observablehq/notebook-kit": "2.2.0",
"@observablehq/parser": "6.1.0",
"@observablehq/inspector": "5.0.1",
"@observablehq/stdlib": "5.8.8",
Expand Down
15 changes: 15 additions & 0 deletions packages/vite-plugins/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "msedge",
"request": "launch",
"name": "Launch Edge against localhost",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}"
}
]
}
29 changes: 29 additions & 0 deletions packages/vite-plugins/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"label": "vite dev",
"script": "dev",
"problemMatcher": [
"$tsc-watch"
],
"presentation": {
"group": "group-build"
}
},
{
"label": "build",
"dependsOn": [
"vite dev"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}
423 changes: 423 additions & 0 deletions packages/vite-plugins/CHANGELOG.md

Large diffs are not rendered by default.

Loading
Loading