Skip to content
This repository was archived by the owner on Apr 17, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions examples/ng-admin/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@
},
"scripts": {
"post-install-cmd": [
"ln -s ../../vendor/marmelab/microrest/web/css web/css/microrest",
"ln -s ../../vendor/marmelab/microrest/web/js web/js/microrest"
"mkdir web/css",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or perhaps can we simply put it on a single line: mkdir -p web/css web/js?

"mkdir web/js",
"ln -s ../../web/css web/css/microrest",
"ln -s ../../web/js web/js/microrest"
],
"run": [
"echo 'Started web server on http://localhost:8888'",
Expand Down