SpoonX/aurelia-form

Runtime Error in vendor-bundle.js

Closed this issue · 14 comments

I have installed and am running a simple app with nothing but pages loaded and getting an error in vendor-bundle.js at line 9054
aurelia-form error 2016-08-23

define('text!aurelia-form/component/form-field.html', ['module'], function(module) { module.exports = "<template>\n  <!-- does not have a view model, meaning that it is a html only component -->\n  <compose\n    if.bind=\"!hasViewModel && visible\"\n    view.bind=\"view\"></compose>\n\n  <!-- has a view model this is a component with view model -->\n  <compose\n    if.bind=\"hasViewModel && visible\"\n    model.bind=\"model\"\n    view-model.bind=\"view\"></compose>\n</template>\n"; });
define('text!aurelia-form/component/form-fields.html', ['module'], function(module) { module.exports = "<template>\n\n  <form-field repeat.for=\"element of schema\"\n    if.bind=\"hasKeyProp(element)\"\n    value.bind=\"model[element.key]\"\n    message.bind=\"messages[element.key]\"\n    element.bind=\"element\">\n  </form-field>\n\n  <form-field repeat.for=\"element of schema\"\n    if.bind=\"!hasKeyProp(element)\"\n    value.bind=\"model\"\n    message.bind=\"messages[element.key]\"\n    element.bind=\"element\">\n  </form-field>\n\n</template>\n"; });
define('text!aurelia-form/component/schema-form.html', ['module'], function(module) { module.exports = "<template>\n  <form role=\"form\">\n    <slot name=\"schema-form-header\"></slot>\n    <form-fields messages.bind=\"messages\" model.bind=\"model\" schema.bind=\"schema\"></form-fields>\n    <slot name=\"schema-form-footer\"></slot>\n  </form>\n</template>\n"; });
define('text!aurelia-form/component/framework/bootstrap/actions.html', ['module'], function(module) { module.exports = "<template>\n  <require from=\"./form-group\"></require>\n  <require from=\"./../../../attributes\"></require>\n  <form-group role=\"group\" element.bind=\"element\" message.bind=\"message\">\n    <div class=\"btn-group\" attributes.bind=\"element.attributes\">\n      <button repeat.for=\"action of element.actions\"\n        class=\"btn btn-default\"\n        type=\"button\"\n        attributes.bind=\"action.attributes\"\n        click.delegate=\"action.action(value, element.index, $event)\"\n        t.bind=\"action.label\">\n        ${action.label}\n      </button>\n    </div>\n  </form-group>\n</template>\n"; });
define('text!aurelia-form/component/framework/bootstrap/association.html', ['module'], function(module) { module.exports = "<template>\n  <require from=\"./../../../attributes\"></require>\n  <require from=\"./form-group\"></require>\n  <form-group role=\"group\" element.bind=\"element\" message.bind=\"message\">\n    <association-select\n      attributes.bind      = \"element.attributes\"\n      multiple.bind        = \"element.multiple\"\n      value.bind           = \"value\"\n      property.bind        = \"element.property\"\n      repository.bind      = \"element.repository\"\n      resource.bind        = \"element.resource\"\n      association.bind     = \"element.association\"\n      manyAssociation.bind = \"element.manyAssociation\"\n      criteria.bind        = \"element.criteria\"></association-select>\n    <span class=\"help-block\">${messages[element.key]}</span>\n  </form-group>\n</template>\n"; });
define('text!aurelia-form/component/framework/bootstrap/checkbox.html', ['module'], function(module) { module.exports = "<template>\n  <require from=\"./form-group\"></require>\n  <require from=\"./../../../attributes\"></require>\n  <form-group element.bind=\"element\" message.bind=\"message\">\n    <div class=\"checkbox\">\n      <label>\n        <input\n          attributes.bind=\"element.attributes\"\n          type=\"checkbox\"\n          t.bind=\"label\"\n          name.bind=\"element.key\"\n          checked.bind=\"element.value\">\n          ${label}\n      </label>\n    </div>\n  </form-group>\n</template>\n"; });
define('text!aurelia-form/component/framework/bootstrap/checkboxes.html', ['module'], function(module) { module.exports = "<template>\n  <require from=\"./../../../attributes\"></require>\n  <require from=\"./../../../converter/normalizeOptions\"></require>\n  <require from=\"./form-group\"></require>\n  <form-group element.bind=\"model.element\" attributes.bind=\"model.element.attributes\">\n    <div class=\"checkbox\" repeat.for=\"option of model.element.options | normalizeOptions\">\n      <label>\n        <input\n          attributes.bind=\"option.attributes\"\n          type=\"checkbox\"\n          name.bind=\"option.name\"\n          model.bind=\"option.value\"\n          checked.bind=\"model.value\">\n          ${option.name}\n      </label>\n    </div>\n  </form-group>\n</template>\n"; });
define('text!aurelia-form/component/framework/bootstrap/collection.html', ['module'], function(module) { module.exports = "<template>\n  <require from=\"./../../../attributes\"></require>\n  <require from=\"./form-group\"></require>\n  <form-group element.bind=\"element\" message.bind=\"message\">\n    <form-fields repeat.for=\"model of models\"\n      attributes.bind=\"element.schema.attributes\"\n      model.bind=\"model\"\n      schema.bind=\"schema($index)\">\n    </form-fields>\n  </form-group>\n</template>\n"; });
define('text!aurelia-form/component/framework/bootstrap/conditional.html', ['module'], function(module) { module.exports = "<template>\n  <form-fields\n    schema.bind=\"schema\"\n    model.bind=\"model\">\n  </form-fields>\n</template>\n"; });
define('text!aurelia-form/component/framework/bootstrap/fieldset.html', ['module'], function(module) { module.exports = "<template>\n  <require from=\"./../../../attributes\"></require>\n  <fieldset attributes.bind=\"element.attributes\">\n    <form-fields\n      model.bind=\"value\"\n      schema.bind=\"element.schema\">\n    </form-fields>\n  </fieldset>\n</template>\n"; });
// this is line 9054
<template>
  <require from="./form-group"></require>
  <form-group element.bind="element" message.bind="message">
    <input
      attributes.bind="element.attributes"
      type="file"
      name.bind="element.key"
      value.bind="element.value">
  </form-group>
</template>

i managed meanwhile to get that error with aurelia-cli. however, it was only once, when actually something unrelated was from with my aurelia.json. so, maybe check your shell output for other errors and/or compare to https://github.com/SpoonX/swan-example-client/tree/aurelia-cli

Hi, when I follow these steps I do NOT get a running app:1) Git Repository Clone to my dev machine2) open the folder and run "npm install" (many warnings but no errors, see attached)3) then I run "au run" (it responds by saying that it doesn't have an app to run - see attached)
by contrast, my machine is set up for aurelia. If I:1) Go to my root dev code folder2) Type "au new some-project" it runs without error3) Type "au run" it runs without error4) Chrome to "localhost:9000" i get the hello world app
 Paul Harker

On Wednesday, August 24, 2016 2:15 AM, doktordirk <notifications@github.com> wrote:

i managed meanwhile to get that error with aurelia-cli. however, it was only once, when actually something unrelated was from with my aurelia.json. so, maybe check your shell output for other errors and/or compare to https://github.com/SpoonX/swan-example-client/tree/aurelia-cli
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.

PS C:\dev\swan-example-client> npm install
npm WARN deprecated tough-cookie@2.2.2: ReDoS vulnerability parsing Set-Cookie https://nodesecurity.io/advisories/130
npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^4.0.0.
npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon
find it in the tree.
npm WARN deprecated minimatch@0.3.0: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN prefer global marked@0.3.6 should be installed with -g
swan-example-client@0.0.5 C:\dev\swan-example-client
+-- aurelia-bundler@0.4.0
| +-- bluebird@2.10.2
| +-- clean-css@3.4.19
| | +-- commander@2.8.1
| | | -- graceful-readlink@1.0.1 | |-- source-map@0.4.4
| | -- amdefine@1.0.0 | +-- glob@5.0.15 | | +-- inflight@1.0.5 | | |-- wrappy@1.0.2
| | +-- inherits@2.0.1
| | -- once@1.3.3 | +-- globby@2.1.0 | | +-- array-union@1.0.2 | |-- object-assign@3.0.0
| +-- html-minifier@1.5.0
| | +-- change-case@2.3.1
| | | +-- camel-case@1.2.2
| | | +-- constant-case@1.1.2
| | | +-- dot-case@1.1.2
| | | +-- is-lower-case@1.1.3
| | | +-- is-upper-case@1.1.2
| | | +-- lower-case@1.1.3
| | | +-- lower-case-first@1.0.2
| | | +-- param-case@1.1.2
| | | +-- pascal-case@1.1.2
| | | +-- path-case@1.1.2
| | | +-- sentence-case@1.1.3
| | | +-- snake-case@1.1.2
| | | +-- swap-case@1.1.2
| | | +-- title-case@1.1.2
| | | +-- upper-case@1.1.3
| | | -- upper-case-first@1.1.2 | | +-- commander@2.9.0 | | +-- concat-stream@1.5.1 | | |-- typedarray@0.0.6
| | +-- he@1.0.0
| | +-- ncname@1.0.0
| | | -- xml-char-classes@1.0.0 | |-- relateurl@0.2.7
| +-- lodash@3.10.1
| +-- rev-hash@1.0.0
| +-- rev-path@1.0.0
| | -- modify-filename@1.1.0 | +-- systemjs-builder@0.15.30 | | +-- babel-plugin-transform-cjs-system-wrapper@0.2.0 | | |-- babel-plugin-transform-cjs-system-require@0.0.2
| | +-- babel-plugin-transform-global-system-wrapper@0.0.1
| | +-- babel-plugin-transform-system-register@0.0.1
| | +-- bluebird@3.4.1
| | +-- data-uri-to-buffer@0.0.4
| | +-- es6-template-strings@2.0.1
| | | +-- es5-ext@0.10.12
| | | -- esniff@1.1.0 | | |-- d@1.0.0
| | +-- glob@7.0.5
| | +-- rollup@0.31.2
| | | -- source-map-support@0.4.2 | | |-- source-map@0.1.32
| | +-- source-map@0.5.6
| | -- systemjs@0.19.37 |-- whacko@0.19.1
| +-- css-select@1.2.0
| | +-- boolbase@1.0.0
| | +-- css-what@2.1.0
| | -- nth-check@1.0.1 | +-- domutils@1.5.1 | | +-- dom-serializer@0.1.0 | | | +-- domelementtype@1.1.3 | | |-- entities@1.1.1
| | -- domelementtype@1.3.0 |-- parse5@1.5.1
+-- aurelia-tools@0.2.4
| +-- breeze-dag@0.1.0
| | +-- breeze-queue@0.1.0
| | | -- breeze-nexttick@0.2.1 | |-- gaia-tsort@0.1.0
| -- through2@2.0.1 |-- xtend@4.0.1
+-- babel-core@6.13.2
| +-- babel-code-frame@6.11.0
| | +-- esutils@2.0.2
| | -- js-tokens@2.0.0 | +-- babel-generator@6.11.4 | | +-- detect-indent@3.0.1 | | |-- repeating@1.1.3
| | | -- is-finite@1.0.1 | | +-- lodash@4.15.0 | |-- source-map@0.5.6
| +-- babel-helpers@6.8.0
| +-- babel-messages@6.8.0
| +-- babel-register@6.11.6
| | +-- home-or-tmp@1.0.0
| | | -- os-tmpdir@1.0.1 | | +-- lodash@4.15.0 | |-- source-map-support@0.2.10
| | -- source-map@0.1.32 | +-- babel-runtime@6.11.6 | |-- regenerator-runtime@0.9.5
| +-- babel-template@6.9.0
| | -- lodash@4.15.0 | +-- babel-traverse@6.13.0 | | +-- globals@8.18.0 | | +-- invariant@2.2.1 | | |-- loose-envify@1.2.0
| | | -- js-tokens@1.0.3 | |-- lodash@4.15.0
| +-- babel-types@6.13.0
| | +-- lodash@4.15.0
| | -- to-fast-properties@1.0.2 | +-- babylon@6.9.1 | +-- convert-source-map@1.3.0 | +-- debug@2.2.0 | |-- ms@0.7.1
| +-- json5@0.4.0
| +-- lodash@4.15.0
| +-- minimatch@3.0.3
| | -- brace-expansion@1.1.6 | | +-- balanced-match@0.4.2 | |-- concat-map@0.0.1
| +-- path-exists@1.0.0
| +-- path-is-absolute@1.0.0
| +-- private@0.1.6
| +-- shebang-regex@1.0.0
| +-- slash@1.0.0
| -- source-map@0.5.6 +-- babel-eslint@6.1.2 | +-- lodash.assign@4.2.0 |-- lodash.pickby@4.6.0
+-- babel-plugin-syntax-flow@6.13.0
+-- babel-plugin-transform-decorators-legacy@1.3.4
| -- babel-plugin-syntax-decorators@6.13.0 +-- babel-plugin-transform-es2015-modules-amd@6.8.0 +-- babel-plugin-transform-es2015-modules-commonjs@6.11.5 |-- babel-plugin-transform-strict-mode@6.11.3
+-- babel-plugin-transform-es2015-modules-systemjs@6.12.0
| -- babel-helper-hoist-variables@6.8.0 +-- babel-plugin-transform-flow-strip-types@6.8.0 +-- babel-preset-es2015@6.13.2 | +-- babel-plugin-check-es2015-constants@6.8.0 | +-- babel-plugin-transform-es2015-arrow-functions@6.8.0 | +-- babel-plugin-transform-es2015-block-scoped-functions@6.8.0 | +-- babel-plugin-transform-es2015-block-scoping@6.10.1 | |-- lodash@4.15.0
| +-- babel-plugin-transform-es2015-classes@6.9.0
| | +-- babel-helper-define-map@6.9.0
| | | -- lodash@4.15.0 | | +-- babel-helper-function-name@6.8.0 | | +-- babel-helper-optimise-call-expression@6.8.0 | |-- babel-helper-replace-supers@6.8.0
| +-- babel-plugin-transform-es2015-computed-properties@6.8.0
| +-- babel-plugin-transform-es2015-destructuring@6.9.0
| +-- babel-plugin-transform-es2015-duplicate-keys@6.8.0
| +-- babel-plugin-transform-es2015-for-of@6.8.0
| +-- babel-plugin-transform-es2015-function-name@6.9.0
| +-- babel-plugin-transform-es2015-literals@6.8.0
| +-- babel-plugin-transform-es2015-modules-umd@6.12.0
| +-- babel-plugin-transform-es2015-object-super@6.8.0
| +-- babel-plugin-transform-es2015-parameters@6.11.4
| | +-- babel-helper-call-delegate@6.8.0
| | -- babel-helper-get-function-arity@6.8.0 | +-- babel-plugin-transform-es2015-shorthand-properties@6.8.0 | +-- babel-plugin-transform-es2015-spread@6.8.0 | +-- babel-plugin-transform-es2015-sticky-regex@6.8.0 | |-- babel-helper-regex@6.9.0
| | -- lodash@4.15.0 | +-- babel-plugin-transform-es2015-template-literals@6.8.0 | +-- babel-plugin-transform-es2015-typeof-symbol@6.8.0 | +-- babel-plugin-transform-es2015-unicode-regex@6.11.0 | |-- regexpu-core@2.0.0
| | +-- regenerate@1.3.1
| | +-- regjsgen@0.2.0
| | -- regjsparser@0.1.5 | |-- jsesc@0.5.0
| -- babel-plugin-transform-regenerator@6.11.4 |-- babel-plugin-syntax-async-functions@6.13.0
+-- babel-preset-es2015-loose@7.0.0
| -- modify-babel-preset@1.2.0 |-- require-relative@0.8.7
+-- babel-preset-stage-1@6.13.0
| +-- babel-plugin-transform-class-constructor-call@6.8.0
| | -- babel-plugin-syntax-class-constructor-call@6.13.0 | +-- babel-plugin-transform-export-extensions@6.8.0 | |-- babel-plugin-syntax-export-extensions@6.13.0
| -- babel-preset-stage-2@6.13.0 | +-- babel-plugin-transform-class-properties@6.11.5 | |-- babel-plugin-syntax-class-properties@6.13.0
| +-- babel-plugin-transform-decorators@6.13.0
| | -- babel-helper-explode-class@6.8.0 | |-- babel-helper-bindify-decorators@6.8.0
| +-- babel-plugin-transform-object-rest-spread@6.8.0
| | -- babel-plugin-syntax-object-rest-spread@6.13.0 |-- babel-preset-stage-3@6.11.0
| +-- babel-plugin-syntax-trailing-function-commas@6.13.0
| +-- babel-plugin-transform-async-to-generator@6.8.0
| | -- babel-helper-remap-async-to-generator@6.11.2 |-- babel-plugin-transform-exponentiation-operator@6.8.0
| +-- babel-helper-builder-binary-assignment-operator-visitor@6.8.0
| | -- babel-helper-explode-assignable-expression@6.8.0 |-- babel-plugin-syntax-exponentiation-operator@6.13.0
+-- bootstrap@3.3.7
+-- browser-sync@2.14.0
| +-- browser-sync-client@2.4.2
| | +-- etag@1.7.0
| | -- fresh@0.3.0 | +-- browser-sync-ui@0.6.0 | | +-- async-each-series@0.1.1 | | +-- connect-history-api-fallback@1.3.0 | | +-- stream-throttle@0.1.3 | | |-- limiter@1.1.0
| | -- weinre@2.0.0-pre-I0Z7U9OV | | +-- express@2.5.11 | | | +-- connect@1.9.2 | | | |-- formidable@1.0.17
| | | +-- mime@1.2.4
| | | +-- mkdirp@0.3.0
| | | -- qs@0.4.2 | |-- underscore@1.7.0
| +-- bs-recipes@1.2.2
| +-- chokidar@1.5.1
| | +-- anymatch@1.3.0
| | +-- async-each@1.0.0
| | +-- glob-parent@2.0.0
| | +-- is-binary-path@1.0.1
| | | -- binary-extensions@1.5.0 | | +-- is-glob@2.0.1 | |-- readdirp@2.1.0
| | -- set-immediate-shim@1.0.1 | +-- connect@3.4.1 | | +-- finalhandler@0.4.1 | | |-- unpipe@1.0.0
| | +-- parseurl@1.3.1
| | -- utils-merge@1.0.0 | +-- dev-ip@1.0.1 | +-- easy-extender@2.3.2 | +-- eazy-logger@3.0.2 | |-- tfunk@3.0.2
| | -- object-path@0.9.2 | +-- emitter-steward@1.0.0 | +-- fs-extra@0.26.7 | | +-- jsonfile@2.3.1 | |-- klaw@1.3.0
| +-- http-proxy@1.13.3
| | +-- eventemitter3@1.2.0
| | -- requires-port@1.0.0 | +-- immutable@3.8.1 | +-- localtunnel@1.8.1 | | +-- openurl@1.1.0 | | +-- request@2.65.0 | | | +-- bl@1.0.3 | | | +-- http-signature@0.11.0 | | | | +-- asn1@0.1.11 | | | | +-- assert-plus@0.1.5 | | | |-- ctype@0.5.3
| | | +-- qs@5.2.1
| | | -- tough-cookie@2.2.2 | |-- yargs@3.29.0
| | +-- camelcase@1.2.1
| | +-- cliui@3.2.0
| | -- window-size@0.1.4 | +-- micromatch@2.3.8 | | +-- arr-diff@2.0.0 | | |-- arr-flatten@1.0.1
| | +-- array-unique@0.2.1
| | +-- braces@1.8.5
| | | +-- expand-range@1.8.2
| | | | -- fill-range@2.2.3 | | | | +-- is-number@2.1.0 | | | | +-- isobject@2.1.0 | | | | +-- randomatic@1.1.5 | | | |-- repeat-string@1.5.4
| | | +-- preserve@0.2.0
| | | -- repeat-element@1.1.2 | | +-- expand-brackets@0.1.5 | | |-- is-posix-bracket@0.1.1
| | +-- extglob@0.3.2
| | +-- filename-regex@2.0.0
| | +-- is-extglob@1.0.0
| | +-- kind-of@3.0.4
| | | -- is-buffer@1.1.4 | | +-- normalize-path@2.0.1 | | +-- object.omit@2.0.0 | | | +-- for-own@0.1.4 | | | |-- for-in@0.1.5
| | | -- is-extendable@0.1.1 | | +-- parse-glob@3.0.4 | | | +-- glob-base@0.3.0 | | |-- is-dotfile@1.0.2
| | -- regex-cache@0.4.3 | | +-- is-equal-shallow@0.1.3 | |-- is-primitive@2.0.0
| +-- opn@3.0.3
| | -- object-assign@4.1.0 | +-- portscanner@1.0.0 | |-- async@0.1.15
| +-- qs@6.2.0
| +-- resp-modifier@6.0.2
| +-- rx@4.1.0
| +-- serve-index@1.7.3
| | +-- accepts@1.2.13
| | | -- negotiator@0.5.3 | | +-- escape-html@1.0.3 | | +-- http-errors@1.3.1 | | |-- statuses@1.3.0
| | -- mime-types@2.1.11 | |-- mime-db@1.23.0
| +-- serve-static@1.10.3
| | -- send@0.13.2 | | +-- destroy@1.0.4 | | +-- mime@1.3.4 | | +-- range-parser@1.0.3 | |-- statuses@1.2.1
| +-- server-destroy@1.0.1
| +-- socket.io@1.4.6
| | +-- engine.io@1.6.9
| | | +-- accepts@1.1.4
| | | | +-- mime-types@2.0.14
| | | | | -- mime-db@1.12.0 | | | |-- negotiator@0.4.9
| | | +-- base64id@0.1.0
| | | +-- engine.io-parser@1.2.4
| | | | +-- after@0.8.1
| | | | +-- arraybuffer.slice@0.0.6
| | | | +-- base64-arraybuffer@0.1.2
| | | | +-- blob@0.0.4
| | | | +-- has-binary@0.1.6
| | | | | -- isarray@0.0.1 | | | |-- utf8@2.1.0
| | | -- ws@1.0.1 | | | +-- options@0.0.6 | | |-- ultron@1.0.2
| | +-- has-binary@0.1.7
| | | -- isarray@0.0.1 | | +-- socket.io-adapter@0.4.0 | | |-- socket.io-parser@2.2.2
| | | +-- debug@0.7.4
| | | +-- isarray@0.0.1
| | | -- json3@3.2.6 | | +-- socket.io-client@1.4.6 | | | +-- backo2@1.0.2 | | | +-- component-bind@1.0.0 | | | +-- component-emitter@1.2.0 | | | +-- engine.io-client@1.6.9 | | | | +-- component-inherit@0.0.3 | | | | +-- has-cors@1.1.0 | | | | +-- parsejson@0.0.1 | | | | +-- parseqs@0.0.2 | | | | +-- xmlhttprequest-ssl@1.5.1 | | | |-- yeast@0.1.2
| | | +-- indexof@0.0.1
| | | +-- object-component@0.0.3
| | | +-- parseuri@0.0.4
| | | | -- better-assert@1.0.2 | | | |-- callsite@1.0.0
| | | -- to-array@0.1.4 | |-- socket.io-parser@2.2.6
| | +-- benchmark@1.0.0
| | +-- component-emitter@1.1.2
| | +-- isarray@0.0.1
| | -- json3@3.3.2 | +-- ua-parser-js@0.7.10 |-- yargs@4.7.1
| +-- camelcase@3.0.0
| +-- cliui@3.2.0
| +-- pkg-conf@1.1.3
| | +-- load-json-file@1.1.0
| | | -- parse-json@2.2.0 | | |-- error-ex@1.3.0
| | | -- is-arrayish@0.2.1 | | +-- object-assign@4.1.0 | |-- symbol@0.2.3
| +-- set-blocking@1.0.0
| -- window-size@0.2.0 +-- conventional-changelog@1.1.0 | +-- conventional-changelog-angular@1.3.0 | | +-- compare-func@1.3.2 | | | +-- array-ify@1.0.0 | | |-- dot-prop@3.0.0
| | | -- is-obj@1.0.1 | | +-- github-url-from-git@1.4.0 | |-- q@1.4.1
| +-- conventional-changelog-atom@0.1.0
| +-- conventional-changelog-codemirror@0.1.0
| +-- conventional-changelog-core@1.5.0
| | +-- conventional-changelog-writer@1.4.1
| | | +-- conventional-commits-filter@1.0.0
| | | | +-- is-subset@0.1.1
| | | | -- modify-values@1.0.0 | | | +-- lodash@4.15.0 | | | +-- semver@5.3.0 | | |-- split@1.0.0
| | +-- conventional-commits-parser@1.2.3
| | | +-- is-text-path@1.0.1
| | | | -- text-extensions@1.3.3 | | | +-- JSONStream@1.1.4 | | | |-- jsonparse@1.2.0
| | | +-- lodash@4.15.0
| | | +-- split2@2.1.0
| | | -- trim-off-newlines@1.0.1 | | +-- get-pkg-repo@1.3.0 | | | +-- hosted-git-info@2.1.5 | | |-- parse-github-repo-url@1.3.0
| | +-- git-raw-commits@1.1.2
| | | -- lodash.template@4.4.0 | | |-- lodash.templatesettings@4.1.0
| | +-- git-remote-origin-url@2.0.0
| | | -- gitconfiglocal@1.0.0 | | |-- ini@1.3.4
| | +-- git-semver-tags@1.1.2
| | | -- semver@5.3.0 | | +-- lodash@4.15.0 | | +-- normalize-package-data@2.3.5 | | | +-- is-builtin-module@1.0.0 | | | |-- builtin-modules@1.1.1
| | | -- validate-npm-package-license@3.0.1 | | | +-- spdx-correct@1.0.2 | | | |-- spdx-license-ids@1.2.2
| | | -- spdx-expression-parse@1.0.2 | | |-- spdx-exceptions@1.0.5
| | -- read-pkg@1.1.0 | |-- path-type@1.1.0
| +-- conventional-changelog-ember@0.2.2
| +-- conventional-changelog-eslint@0.1.0
| +-- conventional-changelog-express@0.1.0
| +-- conventional-changelog-jquery@0.1.0
| +-- conventional-changelog-jscs@0.1.0
| -- conventional-changelog-jshint@0.1.0 +-- del@2.2.2 | +-- globby@5.0.0 | | +-- arrify@1.0.1 | |-- glob@7.0.5
| +-- is-path-cwd@1.0.0
| +-- is-path-in-cwd@1.0.0
| | -- is-path-inside@1.0.0 | +-- object-assign@4.1.0 | +-- pify@2.3.0 | +-- pinkie-promise@2.0.1 | |-- pinkie@2.0.4
| -- rimraf@2.5.4 |-- glob@7.0.5
+-- gulp@3.9.1
| +-- archy@1.0.0
| +-- chalk@1.1.3
| | +-- ansi-styles@2.2.1
| | +-- escape-string-regexp@1.0.5
| | +-- has-ansi@2.0.0
| | | -- ansi-regex@2.0.0 | | +-- strip-ansi@3.0.1 | |-- supports-color@2.0.0
| +-- deprecated@0.0.1
| +-- gulp-util@3.0.7
| | +-- array-differ@1.0.0
| | +-- array-uniq@1.0.3
| | +-- beeper@1.1.0
| | +-- fancy-log@1.2.0
| | | -- time-stamp@1.0.1 | | +-- gulplog@1.0.0 | | |-- glogg@1.0.0
| | +-- has-gulplog@0.1.0
| | | -- sparkles@1.0.0 | | +-- lodash._reescape@3.0.0 | | +-- lodash._reevaluate@3.0.0 | | +-- lodash._reinterpolate@3.0.0 | | +-- lodash.template@3.6.2 | | |-- lodash.templatesettings@3.1.1
| | +-- multipipe@0.1.2
| | | -- duplexer2@0.0.2 | | |-- readable-stream@1.1.14
| | | -- isarray@0.0.1 | |-- vinyl@0.5.3
| +-- interpret@1.0.1
| +-- liftoff@2.3.0
| | +-- extend@3.0.0
| | +-- findup-sync@0.4.2
| | | +-- detect-file@0.1.0
| | | | -- fs-exists-sync@0.1.0 | | |-- resolve-dir@0.1.1
| | | -- global-modules@0.2.3 | | | +-- global-prefix@0.1.4 | | | |-- osenv@0.1.3
| | | -- is-windows@0.2.0 | | +-- fined@1.0.1 | | | +-- lodash.assignwith@4.2.0 | | | +-- lodash.isarray@4.0.0 | | | +-- lodash.isempty@4.4.0 | | | +-- lodash.pick@4.4.0 | | |-- parse-filepath@1.0.1
| | | +-- is-absolute@0.2.5
| | | | +-- is-relative@0.2.1
| | | | | -- is-unc-path@0.1.1 | | | | |-- unc-path-regex@0.1.2
| | | | -- is-windows@0.1.1 | | | +-- map-cache@0.2.2 | | |-- path-root@0.1.1
| | | -- path-root-regex@0.1.2 | | +-- flagged-respawn@0.3.2 | | +-- lodash.isplainobject@4.0.6 | | +-- lodash.isstring@4.0.1 | | +-- lodash.mapvalues@4.6.0 | | +-- rechoir@0.6.2 | |-- resolve@1.1.7
| +-- minimist@1.2.0
| +-- orchestrator@0.3.7
| | +-- end-of-stream@0.1.5
| | +-- sequencify@0.0.7
| | -- stream-consume@0.1.0 | +-- pretty-hrtime@1.0.2 | +-- semver@4.3.6 | +-- tildify@1.2.0 | |-- os-homedir@1.0.1
| +-- v8flags@2.0.11
| | -- user-home@1.1.1 |-- vinyl-fs@0.3.14
| +-- defaults@1.0.3
| +-- glob-stream@3.1.18
| | +-- glob@4.5.3
| | +-- glob2base@0.0.12
| | | -- find-index@0.1.1 | | +-- minimatch@2.0.10 | | +-- ordered-read-streams@0.1.0 | | +-- through2@0.6.5 | | |-- readable-stream@1.0.34
| | | -- isarray@0.0.1 | |-- unique-stream@1.0.0
| +-- glob-watcher@0.0.6
| | -- gaze@0.5.2 | |-- globule@0.1.0
| | +-- glob@3.1.21
| | | +-- graceful-fs@1.2.3
| | | -- inherits@1.0.2 | | +-- lodash@1.0.2 | |-- minimatch@0.2.14
| +-- graceful-fs@3.0.10
| | -- natives@1.0.2 | +-- strip-bom@1.0.0 | |-- first-chunk-stream@1.0.0
| +-- through2@0.6.5
| | -- readable-stream@1.0.34 | |-- isarray@0.0.1
| -- vinyl@0.4.6 |-- clone@0.2.0
+-- gulp-babel@6.1.2
| +-- object-assign@4.1.0
| +-- replace-ext@0.0.1
| -- vinyl-sourcemaps-apply@0.2.1 |-- source-map@0.5.6
+-- gulp-bump@2.4.0
| +-- bump-regex@2.3.0
| | +-- lodash.clone@4.5.0
| | -- semver@5.3.0 | +-- plugin-error@0.1.2 | | +-- ansi-cyan@0.1.1 | | |-- ansi-wrap@0.1.0
| | +-- ansi-red@0.1.1
| | +-- arr-diff@1.1.0
| | +-- arr-union@2.1.0
| | -- extend-shallow@1.1.4 | |-- kind-of@1.1.0
| +-- plugin-log@0.1.0
| -- semver@5.3.0 +-- gulp-changed@1.3.2 +-- gulp-eslint@2.1.0 | +-- bufferstreams@1.1.1 | +-- eslint@2.13.1 | | +-- doctrine@1.3.0 | | +-- es6-map@0.1.4 | | | +-- d@0.1.1 | | | +-- es6-iterator@2.0.0 | | | +-- es6-set@0.1.4 | | | +-- es6-symbol@3.1.0 | | |-- event-emitter@0.3.4
| | +-- escope@3.6.0
| | | +-- es6-weak-map@2.0.1
| | | -- esrecurse@4.1.0 | | | +-- estraverse@4.1.1 | | |-- object-assign@4.1.0
| | +-- espree@3.1.7
| | | +-- acorn@3.3.0
| | | -- acorn-jsx@3.0.1 | | +-- estraverse@4.2.0 | | +-- file-entry-cache@1.3.1 | | | +-- flat-cache@1.2.1 | | | | +-- circular-json@0.3.1 | | | |-- write@0.2.1
| | | -- object-assign@4.1.0 | | +-- glob@7.0.5 | | +-- globals@9.9.0 | | +-- ignore@3.1.5 | | +-- imurmurhash@0.1.4 | | +-- inquirer@0.12.0 | | | +-- ansi-escapes@1.4.0 | | | +-- cli-cursor@1.0.2 | | | |-- restore-cursor@1.0.1
| | | | +-- exit-hook@1.1.1
| | | | -- onetime@1.1.0 | | | +-- cli-width@2.1.0 | | | +-- figures@1.7.0 | | | |-- object-assign@4.1.0
| | | +-- lodash@4.15.0
| | | +-- readline2@1.0.1
| | | | -- mute-stream@0.0.5 | | | +-- run-async@0.1.0 | | |-- rx-lite@3.1.2
| | +-- is-my-json-valid@2.13.1
| | | +-- generate-function@2.0.0
| | | +-- generate-object-property@1.2.0
| | | | -- is-property@1.0.2 | | |-- jsonpointer@2.0.0
| | +-- is-resolvable@1.0.0
| | +-- json-stable-stringify@1.0.1
| | | -- jsonify@0.0.0 | | +-- levn@0.3.0 | | | +-- prelude-ls@1.1.2 | | |-- type-check@0.3.2
| | +-- lodash@4.15.0
| | +-- optionator@0.8.1
| | | +-- deep-is@0.1.3
| | | +-- fast-levenshtein@1.1.4
| | | -- wordwrap@1.0.0 | | +-- path-is-inside@1.0.1 | | +-- pluralize@1.2.1 | | +-- progress@1.1.8 | | +-- require-uncached@1.0.2 | | | +-- caller-path@0.1.0 | | | |-- callsites@0.2.0
| | | -- resolve-from@1.0.1 | | +-- shelljs@0.6.1 | | +-- strip-json-comments@1.0.4 | | +-- table@3.7.8 | | | +-- bluebird@3.4.1 | | | +-- lodash@4.15.0 | | | +-- slice-ansi@0.0.4 | | | +-- tv4@1.2.7 | | |-- xregexp@3.1.1
| | +-- text-table@0.2.0
| | -- user-home@2.0.0 |-- object-assign@4.1.0
+-- gulp-htmlmin@2.0.0
| +-- html-minifier@2.1.7
| | +-- change-case@3.0.0
| | | +-- camel-case@3.0.0
| | | +-- constant-case@2.0.0
| | | +-- dot-case@2.1.0
| | | +-- header-case@1.0.0
| | | +-- no-case@2.3.0
| | | +-- param-case@2.1.0
| | | +-- pascal-case@2.0.0
| | | +-- path-case@2.1.0
| | | +-- sentence-case@2.1.0
| | | +-- snake-case@2.1.0
| | | -- title-case@2.1.0 | | +-- commander@2.9.0 | |-- he@1.1.0
| +-- object-assign@4.1.0
| +-- readable-stream@2.0.6
| | +-- core-util-is@1.0.2
| | +-- isarray@1.0.0
| | +-- process-nextick-args@1.0.7
| | +-- string_decoder@0.10.31
| | -- util-deprecate@1.0.2 |-- tryit@1.0.2
+-- gulp-less@3.1.0
| +-- accord@0.23.0
| | +-- fobject@0.0.4
| | | -- semver@5.3.0 | | +-- glob@7.0.3 | | +-- indx@0.2.3 | | +-- lodash@4.11.2 | | +-- semver@5.3.0 | |-- when@3.7.7
| +-- less@2.7.1
| | +-- errno@0.1.4
| | | -- prr@0.0.0 | | +-- image-size@0.5.0 | | +-- mime@1.3.4 | | +-- promise@7.1.1 | | |-- asap@2.0.4
| | -- source-map@0.5.6 |-- object-assign@4.1.0
+-- gulp-notify@2.2.0
| +-- lodash.template@3.6.2
| | +-- lodash._basecopy@3.0.1
| | +-- lodash._basetostring@3.0.1
| | +-- lodash._basevalues@3.0.0
| | +-- lodash._isiterateecall@3.0.9
| | +-- lodash.escape@3.2.0
| | | -- lodash._root@3.0.1 | | +-- lodash.keys@3.1.2 | | | +-- lodash._getnative@3.9.1 | | | +-- lodash.isarguments@3.1.0 | | |-- lodash.isarray@3.0.4
| | +-- lodash.restparam@3.6.1
| | -- lodash.templatesettings@3.1.1 | +-- node-notifier@4.6.1 | | +-- cli-usage@0.1.2 | | | +-- marked@0.3.6 | | | +-- marked-terminal@1.6.1 | | | | +-- cardinal@0.5.0 | | | | | +-- ansicolors@0.2.1 | | | | |-- redeyed@0.5.0
| | | | | -- esprima-fb@12001.1.0-dev-harmony-fb | | | | +-- cli-table@0.3.1 | | | | |-- colors@1.0.3
| | | | +-- lodash.assign@3.2.0
| | | | | -- lodash._createassigner@3.1.1 | | | |-- node-emoji@0.1.0
| | | -- minimist@0.2.0 | | +-- growly@1.3.0 | | +-- lodash.clonedeep@3.0.2 | | | +-- lodash._baseclone@3.3.0 | | | | +-- lodash._arraycopy@3.0.0 | | | | +-- lodash._arrayeach@3.0.0 | | | | +-- lodash._baseassign@3.2.0 | | | |-- lodash._basefor@3.0.3
| | | -- lodash._bindcallback@3.0.1 | | +-- semver@5.3.0 | |-- shellwords@0.1.0
| +-- node.extend@1.1.5
| | -- is@3.1.0 |-- through2@0.6.5
| -- readable-stream@1.0.34 |-- isarray@0.0.1
+-- gulp-plumber@1.1.0
+-- gulp-protractor@2.4.0
| +-- async@1.5.2
| +-- dargs@4.1.0
| | -- number-is-nan@1.0.0 | +-- event-stream@3.3.4 | | +-- duplexer@0.1.1 | | +-- from@0.1.3 | | +-- map-stream@0.1.0 | | +-- pause-stream@0.0.11 | | +-- split@0.3.3 | | +-- stream-combiner@0.0.4 | |-- through@2.3.8
| -- protractor@3.3.0 | +-- adm-zip@0.4.7 | +-- glob@6.0.4 | +-- jasmine@2.4.1 | | +-- exit@0.1.2 | |-- glob@3.2.11
| | -- minimatch@0.3.0 | +-- jasminewd2@0.0.9 | +-- request@2.67.0 | | +-- http-signature@1.1.1 | | |-- assert-plus@0.2.0
| | -- qs@5.2.1 | +-- saucelabs@1.0.1 | |-- https-proxy-agent@1.0.0
| | -- agent-base@2.0.1 | |-- semver@5.0.3
| +-- selenium-webdriver@2.52.0
| | +-- adm-zip@0.4.4
| | +-- tmp@0.0.24
| | -- xml2js@0.4.4 | | +-- sax@0.6.1 | |-- xmlbuilder@8.2.2
| -- source-map-support@0.4.2 |-- source-map@0.1.32
+-- gulp-sourcemaps@1.6.0
| +-- graceful-fs@4.1.6
| +-- strip-bom@2.0.0
| | -- is-utf8@0.2.1 |-- vinyl@1.2.0
| +-- clone@1.0.2
| -- clone-stats@0.0.1 +-- isparta@4.0.0 | +-- escodegen@1.8.1 | | +-- estraverse@1.9.3 | |-- source-map@0.2.0
| +-- esprima@2.7.3
| +-- istanbul@0.4.5
| | +-- handlebars@4.0.5
| | +-- supports-color@3.1.2
| | | -- has-flag@1.0.0 | |-- wordwrap@1.0.0
| +-- mkdirp@0.5.1
| | -- minimist@0.0.8 | +-- nomnomnomnom@2.0.1 | | +-- chalk@0.4.0 | | | +-- ansi-styles@1.0.0 | | | +-- has-color@0.1.7 | | |-- strip-ansi@0.1.1
| | -- underscore@1.6.0 | +-- object-assign@4.1.0 | +-- source-map@0.5.6 |-- which@1.2.10
| -- isexe@1.1.2 +-- istanbul@1.0.0-alpha.2 | +-- abbrev@1.0.9 | +-- istanbul-api@1.0.0-aplha.10 | | +-- fileset@0.2.1 | | |-- minimatch@2.0.10
| | +-- istanbul-lib-coverage@1.0.0
| | +-- istanbul-lib-hook@1.0.0-alpha.4
| | | -- append-transform@0.3.0 | | +-- istanbul-lib-instrument@1.1.0 | | +-- istanbul-lib-report@1.0.0-alpha.3 | | | +-- path-parse@1.0.5 | | |-- supports-color@3.1.2
| | +-- istanbul-lib-source-maps@1.0.0-alpha.10
| | | -- source-map@0.5.6 | |-- istanbul-reports@1.0.0-alpha.8
| +-- js-yaml@3.6.1
| | -- argparse@1.0.7 | |-- sprintf-js@1.0.3
| +-- nopt@3.0.6
| -- wordwrap@1.0.0 +-- jasmine-core@2.4.1 +-- jspm@0.16.39 | +-- core-js@1.2.7 | +-- glob@6.0.4 | +-- jspm-github@0.13.16 | | +-- expand-tilde@1.2.2 | | +-- netrc@0.1.4 | | +-- request@2.53.0 | | | +-- aws-sign2@0.5.0 | | | +-- bl@0.9.5 | | | |-- readable-stream@1.0.34
| | | | -- isarray@0.0.1 | | | +-- caseless@0.9.0 | | | +-- combined-stream@0.0.7 | | | |-- delayed-stream@0.0.5
| | | +-- forever-agent@0.5.2
| | | +-- form-data@0.2.0
| | | | -- async@0.9.2 | | | +-- hawk@2.3.1 | | | +-- http-signature@0.10.1 | | | +-- mime-types@2.0.14 | | | |-- mime-db@1.12.0
| | | +-- oauth-sign@0.6.0
| | | -- qs@2.3.3 | | +-- rimraf@2.3.4 | | |-- glob@4.5.3
| | | -- minimatch@2.0.10 | | +-- semver@5.3.0 | | +-- tar@2.2.1 | | | +-- block-stream@0.0.9 | | |-- fstream@1.0.10
| | -- yauzl@2.6.0 | | +-- buffer-crc32@0.2.5 | |-- fd-slicer@1.0.1
| | -- pend@1.2.0 | +-- jspm-npm@0.26.11 | | +-- buffer-peek-stream@1.0.1 | | +-- request@2.58.0 | | | +-- aws-sign2@0.5.0 | | | +-- bl@0.9.5 | | | |-- readable-stream@1.0.34
| | | | -- isarray@0.0.1 | | | +-- caseless@0.10.0 | | | +-- extend@2.0.1 | | | +-- har-validator@1.8.0 | | | +-- hawk@2.3.1 | | | +-- mime-types@2.0.14 | | | |-- mime-db@1.12.0
| | | -- qs@3.1.0 | | +-- rmdir@1.1.0 | | |-- node.flow@1.2.3
| | | -- node.extend@1.0.8 | | | +-- is@0.2.7 | | |-- object-keys@0.4.0
| | +-- semver@5.3.0
| | -- tar@1.0.3 | +-- jspm-registry@0.4.1 | +-- ncp@2.0.0 | +-- proper-lockfile@1.1.3 | | +-- err-code@1.1.1 | |-- retry@0.10.0
| +-- request@2.74.0
| | +-- aws-sign2@0.6.0
| | +-- aws4@1.4.1
| | +-- bl@1.1.2
| | +-- caseless@0.11.0
| | +-- combined-stream@1.0.5
| | | -- delayed-stream@1.0.0 | | +-- forever-agent@0.6.1 | | +-- form-data@1.0.0-rc4 | | +-- har-validator@2.0.6 | | |-- commander@2.9.0
| | +-- hawk@3.1.3
| | | +-- boom@2.10.1
| | | +-- cryptiles@2.0.5
| | | +-- hoek@2.16.3
| | | -- sntp@1.0.9 | | +-- http-signature@1.1.1 | | | +-- assert-plus@0.2.0 | | | +-- jsprim@1.3.0 | | | | +-- extsprintf@1.0.2 | | | | +-- json-schema@0.2.2 | | | |-- verror@1.3.6
| | | -- sshpk@1.9.2 | | | +-- asn1@0.2.3 | | | +-- assert-plus@1.0.0 | | | +-- dashdash@1.14.0 | | | |-- assert-plus@1.0.0
| | | +-- ecc-jsbn@0.1.1
| | | +-- getpass@0.1.6
| | | | -- assert-plus@1.0.0 | | | +-- jodid25519@1.0.2 | | | +-- jsbn@0.1.0 | | |-- tweetnacl@0.13.3
| | +-- is-typedarray@1.0.0
| | +-- isstream@0.1.2
| | +-- json-stringify-safe@5.0.1
| | +-- node-uuid@1.4.7
| | +-- oauth-sign@0.8.2
| | +-- stringstream@0.0.5
| | +-- tough-cookie@2.3.1
| | -- tunnel-agent@0.4.3 | +-- rsvp@3.2.1 | +-- semver@5.3.0 | +-- systemjs@0.19.31 | +-- systemjs-builder@0.15.22 | | +-- bluebird@3.4.1 | | +-- glob@7.0.5 | | +-- rollup@0.30.0 | | |-- source-map-support@0.4.2
| | | -- source-map@0.1.32 | |-- source-map@0.5.6
| +-- traceur@0.0.105
| | -- commander@2.9.0 |-- uglify-js@2.6.4
| +-- async@0.2.10
| +-- source-map@0.5.6
| +-- uglify-to-browserify@1.0.2
| -- yargs@3.10.0 | +-- cliui@2.1.0 | | +-- center-align@0.1.3 | | | +-- align-text@0.1.4 | | | |-- longest@1.0.1
| | | -- lazy-cache@1.0.4 | |-- right-align@0.1.3
| -- window-size@0.1.0 +-- karma@0.13.22 | +-- batch@0.5.3 | +-- body-parser@1.15.2 | | +-- bytes@2.4.0 | | +-- content-type@1.0.2 | | +-- depd@1.1.0 | | +-- http-errors@1.5.0 | | |-- setprototypeof@1.0.1
| | +-- iconv-lite@0.4.13
| | +-- on-finished@2.3.0
| | | -- ee-first@1.1.1 | | +-- raw-body@2.1.7 | |-- type-is@1.6.13
| | -- media-typer@0.3.0 | +-- colors@1.1.2 | +-- core-js@2.4.1 | +-- di@0.0.1 | +-- dom-serialize@2.2.1 | | +-- custom-event@1.0.0 | | +-- ent@2.2.0 | |-- void-elements@2.0.1
| +-- expand-braces@0.1.2
| | +-- array-slice@0.2.3
| | -- braces@0.1.5 | |-- expand-range@0.1.1
| | +-- is-number@0.1.1
| | -- repeat-string@0.2.2 | +-- glob@7.0.5 | |-- fs.realpath@1.0.0
| +-- isbinaryfile@3.0.1
| +-- log4js@0.6.38
| | -- readable-stream@1.0.34 | |-- isarray@0.0.1
| +-- mime@1.3.4
| +-- optimist@0.6.1
| | +-- minimist@0.0.10
| | -- wordwrap@0.0.2 | +-- source-map@0.5.6 |-- useragent@2.1.9
| -- lru-cache@2.2.4 +-- karma-babel-preprocessor@6.0.1 +-- karma-chrome-launcher@1.0.1 |-- fs-access@1.0.0
| -- null-check@1.0.0 +-- karma-coverage@1.1.1 | +-- dateformat@1.0.12 | | +-- get-stdin@4.0.1 | |-- meow@3.7.0
| | +-- camelcase-keys@2.1.0
| | | -- camelcase@2.1.1 | | +-- loud-rejection@1.6.0 | | | +-- currently-unhandled@0.4.1 | | | |-- array-find-index@1.0.1
| | | -- signal-exit@3.0.0 | | +-- map-obj@1.0.1 | | +-- object-assign@4.1.0 | | +-- redent@1.0.0 | | | +-- indent-string@2.1.0 | | | |-- repeating@2.0.1
| | | -- strip-indent@1.0.1 | |-- trim-newlines@1.0.0
| +-- istanbul@0.4.5
| | +-- supports-color@3.1.2
| | -- wordwrap@1.0.0 |-- source-map@0.5.6
+-- karma-jasmine@1.0.2
+-- karma-jspm@2.1.1
| -- glob@3.2.11 |-- minimatch@0.3.0
| +-- lru-cache@2.7.3
| -- sigmund@1.0.1 +-- object.assign@4.0.4 | +-- define-properties@1.1.2 | | +-- foreach@2.0.5 | |-- object-keys@1.0.11
| +-- function-bind@1.1.0
| -- object-keys@1.0.11 +-- require-dir@0.3.0 +-- run-sequence@1.2.2 +-- vinyl-paths@2.1.0 -- yargs@4.8.1
+-- cliui@3.2.0
| -- wrap-ansi@2.0.0 +-- decamelize@1.2.0 +-- get-caller-file@1.0.2 +-- os-locale@1.4.0 |-- lcid@1.0.0
| -- invert-kv@1.0.0 +-- read-pkg-up@1.0.1 |-- find-up@1.1.2
| -- path-exists@2.1.0 +-- require-directory@2.1.1 +-- require-main-filename@1.0.1 +-- set-blocking@2.0.0 +-- string-width@1.0.2 | +-- code-point-at@1.0.0 |-- is-fullwidth-code-point@1.0.0
+-- which-module@1.0.0
+-- window-size@0.2.0
+-- y18n@3.2.1
-- yargs-parser@2.4.1 -- camelcase@3.0.0

npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14

PS C:\dev\swan-example-client> au run
Invalid Command: run
_ _ ____ _ ___
__ _ _ _ _ __ | () __ _ / | | | |
/ | | | | '**/ _ \ | |/ _ | | | | | | |
| (
| | |
| | | | __/ | | (
| | | |
| |_ | |
,_|,|| |||_,_| _
|__**|___|

new --here

Creates a new Aurelia application project.

project-name (optional) - The name to create the project with. If one isn't provided, the wizard will ask for one.

--here - Creates a new project with the current working directory as the root of the project instead of creating a new project folder.

help

Displays the Aurelia CLI help.

hmm, had that error myself. i did manage it to run, but not sure what i did. which aureliacli version btw?

i'm not entirely sure why this is happening but might be different versions of local and global aurelia-cli?
anyways, what worked for me was ton uninstall local and global aurelia-cli, and reinstall global and local aurelia-cli

npm uninstall aurelia-cli -g
npm uninstall aurelia-cli
npm install aurelia-cli -g
npm install aurelia-cli

@doktordirk I seem to be getting a similar issue where the bundling process barfs when trying to bundle the aurelia-form components.

image

On the left is the swan example and the right my project.

I have not found anyway to get round this (other than copying the effected section from the vendor bundle of the swan example into my project- which allows it to run but then I get a promise rejection error 👎 ). @paulharker is your project on Asp.net Core and using typescript. As I am trying to figure out the differences between swan example and my project.

AuFormsEx.zip

.net Core project attached

@beatsm give 0.1.11 a try. npm i github:spoonx/aurelia-form#0.1.11

@doktordirk Thanks but unfortunately this had made it worse.

I have run au build 5 times now and the first time it got to checkbox.html. Three times it got to checkboxes.html and once it got to collections.html.

Does my aurelia.json look ok to you? If it does, I am thinking that this is a aurelia-cli issue (possibly with the type of project I am using).

Thoughts?

@doktordirk What I'm seeing is that the aurelia-cli is bundling some HTML into the vendor-package.js, and that is not happening in the swan-example-client (which I have installed and have running). Any thoughts?

it's a bug in aurelia-cli. you can track above linked issue

Ha. I looked at that issue and didn't see the connection and it was right there. Thanks for pointing it out to me. You can probably close this issue into that other one.

@paulharker @beatsm i've updated the install instructions. should work with those

@doktordirk This works when setting all the resources.

I have tried it with 0.19 and the original bug with the Aurelia-Cli still remains :-(

yeah, doesn't seem to be high on their list. anyways, i guess i can close this then now