Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
neminovno committed May 23, 2019
0 parents commit 2acdaef
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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}"
]
}
]
}
4 changes: 4 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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!**
32 changes: 32 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
]
}

0 comments on commit 2acdaef

Please sign in to comment.