Skip to content

Commit

Permalink
feat: enable applyOnConfigurationChanged by default
Browse files Browse the repository at this point in the history
  • Loading branch information
subframe7536 committed Oct 30, 2024
1 parent 089c088 commit ce024cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ VSCode extension that custom ui css style in both editor and webview
| `custom-ui-style.webview.monospaceSelector` | Custom monospace selector in webview | `array` | `` |
| `custom-ui-style.webview.sansSerifSelector` | Custom sans-serif selector in webview | `array` | `` |
| `custom-ui-style.webview.stylesheet` | Custom css for webview, support nest selectors | `object` | `{}` |
| `custom-ui-style.applyOnConfigurationChanged` | Whether to apply styles when configuration changed, 1500ms debounce | `boolean` | `false` |
| `custom-ui-style.applyOnConfigurationChanged` | Whether to apply styles when configuration changed, 1500ms debounce | `boolean` | `true` |

<!-- configs -->

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,14 @@
"custom-ui-style.applyOnConfigurationChanged": {
"scope": "resource",
"type": "boolean",
"default": false,
"default": true,
"description": "Whether to apply styles when configuration changed, 1500ms debounce"
}
}
}
},
"scripts": {
"build": "pnpm run typecheck && tsup --treeshake",
"build": "pnpm run typecheck && tsup --minify --treeshake",
"dev": "tsup --watch",
"prepare": "pnpm run update",
"update": "vscode-ext-gen --output src/generated/meta.ts",
Expand Down

0 comments on commit ce024cd

Please sign in to comment.