From 2acdaef4160a2534ab91436ed04fc1a4a871cb0d Mon Sep 17 00:00:00 2001 From: nemi Date: Thu, 23 May 2019 02:46:48 +0200 Subject: [PATCH] initial commit --- .vscode/launch.json | 18 ++++++++++++++++++ .vscodeignore | 4 ++++ CHANGELOG.md | 8 ++++++++ README.md | 11 +++++++++++ package.json | 32 ++++++++++++++++++++++++++++++++ 5 files changed, 73 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscodeignore create mode 100644 CHANGELOG.md create mode 100644 README.md create mode 100644 package.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..7bc18a4 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +// A launch configuration that launches the extension inside a new window +// Use IntelliSense to learn about possible attributes. +// Hover to view descriptions of existing attributes. +// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Extension", + "type": "extensionHost", + "request": "launch", + "runtimeExecutable": "${execPath}", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ] + } + ] +} \ No newline at end of file diff --git a/.vscodeignore b/.vscodeignore new file mode 100644 index 0000000..f369b5e --- /dev/null +++ b/.vscodeignore @@ -0,0 +1,4 @@ +.vscode/** +.vscode-test/** +.gitignore +vsc-extension-quickstart.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2cc91ed --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ + +# Change Log + +All notable changes to the "flex-and-actionscript-extension-pack" extension pack will be documented in this file. + +## v0.0.1 + +- Initial release diff --git a/README.md b/README.md new file mode 100644 index 0000000..028ffe8 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# README + +## Flex and ActionScript Extension Pack + +Includes Visual Studio Code extensions for Flex and ActionScript development: + +* [vscode-as3mxml](https://github.com/BowlerHatLLC/vscode-as3mxml) - ActionScript & MXML language extension +* [vscode-as-fx-ide](https://github.com/neminovno/vscode-as-fx-ide) - ActionScript and Flex projects support (Menu items/Commands like New Project, New Item Renderer) +* [vscode-flex-snippets](https://github.com/neminovno/vscode-flex-snippets) - Flex (MX & Spark) snippets + +**Enjoy!** diff --git a/package.json b/package.json new file mode 100644 index 0000000..ff99ede --- /dev/null +++ b/package.json @@ -0,0 +1,32 @@ +{ + "name": "flex-and-actionscript-extension-pack", + "displayName": "Flex and ActionScript Extension Pack", + "description": "Includes extensions for Flex and ActionScript development", + "version": "0.0.1", + "publisher": "neminovno", + "engines": { + "vscode": "^1.34.0" + }, + "categories": [ + "Extension Packs" + ], + "keywords": [ + "flex", + "actionscript", + "mxml", + "air" + ], + "homepage": "https://github.com/neminovno/flex-and-actionscript-extension-pack/blob/master/README.md", + "bugs": { + "url": "https://github.com/neminovno/flex-and-actionscript-extension-pack/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/neminovno/flex-and-actionscript-extension-pack.git" + }, + "extensionPack": [ + "bowlerhatllc.vscode-nextgenas", + "neminovno.vscode-as-fx-ide", + "neminovno.vscode-flex-snippets" + ] +} \ No newline at end of file