[JS] Run gulp script

This commit is contained in:
Łukasz Chruściel 2016-06-19 22:35:47 +02:00
parent e2645a8c59
commit 29548ea1b3
No known key found for this signature in database
GPG key ID: FF92D527BD857C95
4 changed files with 6 additions and 3 deletions

View file

@ -42,7 +42,7 @@ If you want to try out new Sylius UI, please run the following commands:
```bash
$ npm install
$ gulp
$ npm run gulp
```
[Behat](http://behat.org) scenarios

View file

@ -126,7 +126,7 @@ And now you can use gulp for installing views, by just running a simple command:
.. code-block:: bash
$ gulp
$ npm run gulp
After you've run the ``gulp`` command please have a look at the ``/admin`` url, where you will find the administration panel.

View file

@ -11,4 +11,4 @@ run_command "app/console doctrine:phpcr:repository:init --env=test_cached --no-d
print_header "Setting the web assets up" "sylius"
run_command "app/console assets:install --env=test_cached --no-debug -vvv" || exit $?
run_command "app/console assetic:dump --env=test_cached --no-debug -vvv" || exit $?
run_command "gulp" || exit $?
run_command "npm run gulp" || exit $?

View file

@ -20,6 +20,9 @@
"gulp-uglifycss": "^1.0.5",
"merge-stream": "^1.0.0"
},
"scripts": {
"gulp": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sylius/Sylius.git"