├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .vscode-test/ 4 | *.vsix 5 | TODO.md 6 | yarn-error.log 7 | artwork/animation.psd 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DEPRECATED 2 | This extension is no longer needed. The [core Vandelay](https://github.com/ericbiewener/vscode-vandelay) extension now includes JavaScript support 3 | out of the box. 4 | --------------------------------------------------------------------------------