Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diasbruno/flash-cli
command-line tools for flash.
https://github.com/diasbruno/flash-cli
Last synced: 9 days ago
JSON representation
command-line tools for flash.
- Host: GitHub
- URL: https://github.com/diasbruno/flash-cli
- Owner: diasbruno
- Created: 2013-06-09T02:26:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-12T09:45:54.000Z (over 11 years ago)
- Last Synced: 2023-03-15T09:40:32.642Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 3.09 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
flash-cli {osx}
=========```
usage: ./flash-cli -ip initialize a new project.
-ic initialize a new component.
-d [task] build debug version (task name is optional).
-r [task] build release version (task name is optional).
-c [task] build component (task name is optional).
-t [task] build and run tests (task name is optional).
-docs open the flash asdocs.
-ut gets the build/ut.zip, with flexunit and many others,
and put them in the libs folder.
```Don't forget to add...
```
export FLEX_HOME = "YOUR_FLEX" # and
export FLEX_BIN = "$FLEX_HOME/bin"
```install
=========just copy on clean folder...
```
curl https://raw.github.com/diasbruno/flash-cli/master/installer.sh | sh
```for components
=========while you're developing a component for our project, you'll just need
```
./flash-cli -ic
./flash-cli -ut # add flexunit to the libs folder.
./flash-cli -c
./flash-cli -t # just build.
./flash-cli -t run # build and run tests.
```for projects
=========project, you'll just need
```
./flash-cli -ip
./flash-cli -d # just build.
./flash-cli -d run # build and run.
./flash-cli -r
```TODO
=========- test on windows and linux (maybe).
- dependency manager.