You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 1, 2018. It is now read-only.
In short: deploy command ignores hidden files, while build doesn't. deploy should not ignore them.
How to reproduce:
Create Ionic project and add chcp plugin:
ionic start Test blank
cd ./Test
ionic build
ionic plugin add cordova-hot-code-push-plugin
Run server:
cordova-hcp server
Add ionicons:
ionic add ionicons
As a result, CLI client will update chcp.manifest and add lib/angular/.bower.json to it. But if we will try to access it from the browser - it's not gonna be found. This breaks the update procedure.
The text was updated successfully, but these errors were encountered:
If file is hidden - it is ignored by the CLI client. Hidden files are not gonna break the update logic anymore, unless you intentionally put them in the manifest file. In that case - be sure to make them accessible through the url. Otherwise, you will end up having the same problem. Local dev server doesn't make them visible.
Relates to nordnet/cordova-hot-code-push#4 issue.
In short:
deploy
command ignores hidden files, whilebuild
doesn't.deploy
should not ignore them.How to reproduce:
Create Ionic project and add chcp plugin:
Run server:
Add
ionicons
:As a result, CLI client will update
chcp.manifest
and addlib/angular/.bower.json
to it. But if we will try to access it from the browser - it's not gonna be found. This breaks the update procedure.The text was updated successfully, but these errors were encountered: