├── .gitignore ├── .vscodeignore ├── .whitesource ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json └── vuejs-icon.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | *.vsix -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .whitesource 3 | -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vuejs-extension-pack/HEAD/.whitesource -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vuejs-extension-pack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vuejs-extension-pack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vuejs-extension-pack/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vuejs-extension-pack/HEAD/package.json -------------------------------------------------------------------------------- /vuejs-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vuejs-extension-pack/HEAD/vuejs-icon.png --------------------------------------------------------------------------------