Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 25d75c5

Browse files
committed
chore(release): v0.1.0
1 parent bb48676 commit 25d75c5

File tree

3 files changed

+9
-36
lines changed

3 files changed

+9
-36
lines changed

README.md

Lines changed: 7 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -150,45 +150,18 @@ grunt
150150
The karma task will try to open Firefox and Chrome as browser in which to run the tests. Make sure this is available or change the configuration in `test\karma.conf.js`
151151

152152

153-
### Watch
153+
### Grunt Serve
154154

155-
You can watch files change for your tests with
155+
We have one task to serve them all !
156156

157157
```sh
158-
grunt watch
158+
grunt serve
159159
```
160160

161-
Make sure to have a Karma server available with it.
161+
It's equal to run separately:
162162

163+
* `grunt connect:server` : giving you a development server at [http://127.0.0.1:8000/](http://127.0.0.1:8000/).
163164

164-
```sh
165-
grunt server
166-
```
167-
168-
(you can force a test on this server with `grunt karma:unit:run`)
169-
170-
171-
### Local Doc
172-
173-
The documentation is generated by bower and grunt. To build it run :
174-
175-
```sh
176-
grunt build-doc
177-
```
165+
* `grunt karma:server` : giving you a Karma server to run tests (at [http://localhost:9876/](http://localhost:9876/) by default). You can force a test on this server with `grunt karma:unit:run`.
178166

179-
And then, launch a built-in web server on the angular-ui-docs bower module
180-
181-
```sh
182-
cd bower_components/angular-ui-docs/
183-
php -S localhost:8000
184-
or
185-
python -m SimpleHTTPServer
186-
```
187-
188-
Then check your [http://localhost:8000/](http://localhost:8000/)
189-
190-
**Tips for fast development** : Inline everything
191-
192-
```sh
193-
grunt build-doc && cd bower_components/angular-ui-docs/ && php -S localhost:8000 && cd ../..
194-
```
167+
* `grunt watch` : will automatically test your code and build your demo. You can demo generation with `grunt build:gh-pages`.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-ui-ace",
3-
"version": "0.0.5",
3+
"version": "0.1.0",
44
"description": "This directive allows you to add ACE editor elements.",
55
"author": "https://github.com/angular-ui/ui-ace/graphs/contributors",
66
"license": "MIT",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{
33
"name": "angular-ui-ace",
4-
"version": "0.0.5",
4+
"version": "0.1.0",
55
"description": "This directive allows you to add ACE editor elements.",
66
"author": "https://github.com/angular-ui/ui-ace/graphs/contributors",
77
"license": "MIT",

0 commit comments

Comments
 (0)