Skip to content

Commit e6eebbd

Browse files
authored
Remove all remaining Grunt tasks in favor of Vite configs (RobotWebTools#687)
- Remove browserify/uglify in favor of Vite in library mode. - Replace grunt-jsdoc with an npm script - Replace grunt-eslint with vite-plugin-checker - Replace invocations of `tsc` with vite-plugin-checker - Use dynamic imports for browser/node.js environment differences - Remove various Grunt plugins
1 parent 253ae64 commit e6eebbd

10 files changed

+1550
-4820
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ node_modules
55
*.out
66
*.log
77
*.tar.gz
8-
tsbuild
9-
build
8+
dist

Gruntfile.cjs

-72
This file was deleted.

eslint.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default [
1616
}
1717
},
1818
{
19-
ignores: ['build/**/*.js', 'tsbuild/**/*.js']
19+
ignores: ['dist']
2020
},
2121
{
2222
rules: {

0 commit comments

Comments
 (0)