How to use ExtJS7 without Sencha Cmd?

405 Views Asked by At

I am trying to migrate ExtJS6 project that doesn't use Sencha Cmd to ExtJS7 and keep it that way. Before it was enough to include the following static files to get it working:

<link rel="stylesheet" type="text/css" href="/ext/classic/theme-triton/resources/theme-triton-all.css">
<link rel="stylesheet" type="text/css" href="/ext/packages/charts/classic/triton/resources/charts-all.css">
<link rel="stylesheet" type="text/css" href="/ext/packages/ux/classic/triton/resources/ux-all.css">

<script type="text/javascript" src="/ext/ext-all.js"></script>
<script type="text/javascript" src="/ext/classic/theme-triton/theme-triton.js"></script>
<script type="text/javascript" src="/ext/packages/charts/classic/charts.js"></script>
<script type="text/javascript" src="/ext/packages/ux/classic/ux.js"></script>

I downloaded the whole ExtJS7 npm tree but I can't find these files. All I was able to find was ext-all.js, but that doesn't include charts or Triton theme or UX, only the core.

Do these files still exist somewhere in the new npm repository? If not, has anyone figured a way to build these static files from the sources (or achieve a similar functionality)?

(I understand that they really want you to use sencha-cmd, but I really want to use static files if that's still possible.)

0

There are 0 best solutions below