0

Sencha Cmd v6 when built creates a directory under current ext app with name "${ext.dir}", changing config for ext.dir in sencha.cfg does not help

How to disable it from generation directory with name "${ext.dir}" instead with some other sensible name.

Versions Ext v6 Sencha Cmd 6.1.0

ducktyped
  • 4,354
  • 4
  • 26
  • 38

1 Answers1

2

Looks like you use template for own project. Look at "output" section inside app.json.

falko
  • 1,407
  • 14
  • 15
  • It does mention ${ext.dir} but should not it be replaced with value of ext.dir – ducktyped Jun 16 '16 at 08:55
  • 1
    This variable is not aveilable from your project. `output` config section must be looks like: "output": { "base": "${workspace.build.dir}/${build.environment}/${app.name}", "page": "index.html", "manifest": "${build.id}.json", "js": "${build.id}/app.js", "appCache": { "enable": false }, "resources": { "path": "${build.id}/resources", "shared": "resources" } } – falko Jun 17 '16 at 09:51