Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Jun 19, 2023
1 parent 3147b7b commit 1535d6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ First release.
- v0.3.4: #23: wb-helper-end is not applied to column header

- v0.3.2, v0.3.3: Improve distribution
-

- v0.3.1: #20: Fix sourcemaps
- v0.3.1: #19: Fix missing icons in deploymet by inlining
- v0.3.1: #19: Make options optional: debugLevel, edit, filter, grid
Expand Down
6 changes: 3 additions & 3 deletions Gruntfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ module.exports = (grunt: any) => {
exec: {
build: {
stdin: true, // Allow interactive console
cmd: "npm build",
cmd: "npm run build",
},
copy_dist: {
stdin: true, // Allow interactive console
cmd: "rm dist/*.* ; cp build/*.* dist",
},
make_docs: {
stdin: true, // Allow interactive console
cmd: "npm docs",
cmd: "npm run docs",
},
make_dist: {
stdin: true, // Allow interactive console
cmd: "npm make_dist",
cmd: "npm run make_dist",
},
},
connect: {
Expand Down

0 comments on commit 1535d6c

Please sign in to comment.