Skip to content
Open
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
25 changes: 24 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,27 @@
}
],

"forwardPorts": [5173, 4173],
"portsAttributes": {
"5173": {
"label": "decondenser-website (dev)"
},
"4173": {
"label": "decondenser-website (prod build preview)"
}
},
"otherPortsAttributes": {
// Don't rely on auto-inference for forwarded ports, make it reliable.
"onAutoForward": "ignore"
},

"customizations": {
"vscode": {
"settings": {
// Listen on `0.0.0.0` on the host machine to allow accessing the site
// via the local network, e.g. with a phone connected to the same WiFi
"remote.localPortHost": "allInterfaces",

// Use the workspace's version of TS, not the one that comes
// preinstalled with VSCode
"typescript.tsdk": "node_modules/typescript/lib",
Expand Down Expand Up @@ -91,7 +109,9 @@
},

// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
"typescript.tsc.autoDetect": "off"
"typescript.tsc.autoDetect": "off",

"vue.server.includeLanguages": ["vue", "markdown"]
},
"extensions": [
// Rust LSP
Expand Down Expand Up @@ -149,6 +169,9 @@
// TOML LSP
"tamasfe.even-better-toml",

// Vue LSP
"vue.volar",

// Preview generated HTML files
"ms-vscode.live-server"
]
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ node_modules
*.vsix
target/

**/.vitepress/cache/
**/.vitepress/dist/
**/.vitepress/temp/

# This file is code-generated via `cargo component` during the build
decondenser-wasm/src/bindings.rs

Expand Down
10 changes: 1 addition & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
# Change Log

All notable changes to the "decondenser" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

- Initial release
See the [changelog](https://decondenser.dev/changelog) page on the website for details.
1 change: 0 additions & 1 deletion TODO.md

This file was deleted.

Loading
Loading