Alexander
Alexander

Reputation: 20234

ExtJS package paths are not added to to bootstrap.json

I am using Sencha Cmd to compile my ExtJS project.

I wanted to add a third-party package to my project. For Sencha Cmd to build this, one has to add the package in app.json:

"requires": [
    "charts",
    "font-awesome",
    "font-ext",
    "bryntum-scheduler",
    "bryntum-scheduler-theme-base",
    "bryntum-scheduler-theme-triton"
],

This somehow works, but not completely.

Why is that, where does Sencha Cmd take the contents of bootstrap.json file from, and/or how can I see what happens?

Upvotes: 3

Views: 932

Answers (1)

Salman hassan
Salman hassan

Reputation: 398

you have to run these cammands in your cmd.whenever i change something in bootstrap.json it didnt work at first place.But after running these cammands it works

  • sencha app watch
  • sencha app refresh

Upvotes: 2

Related Questions