Skip to content

Releases: kadojs/kado

3.7.10

13 Apr 06:01
Compare
Choose a tag to compare
  • Fix issue with addScriptOnce and addCssOnce where the resources display on
    the next page load.
  • Correct modules to use the addScriptOnce methods.

3.7.9

13 Apr 04:19
Compare
Choose a tag to compare

3.7.9

  • Use development mode for building by default and require either
    NODE_ENV=production or node app kado bundle --production to enable complete
    builds.
  • Disable view cache when in development mode.
  • No longer restart on .html changes with nodemon.
  • There is now npm run build for production and npm run bundle as well as
    npm run postinstall to handle development building.

3.7.8

12 Apr 20:04
Compare
Choose a tag to compare
  • Bug fix to windows paths generated during build process.

3.7.7

12 Apr 05:28
Compare
Choose a tag to compare
  • Fix local build suites to output to the system entry folder.
  • local.js and localExtra.js were not using the properly build module list.
  • Break build into system, module local chains with sync and extra packs.
  • Add ability to filter bundling by -s for system or -m for module.
  • Enable source maps in bundles by default.
  • Add -q to do quick builds of local only and then -N to skip building
    source maps. See node app kado bundle --help for more information.

3.7.6

12 Apr 04:19
Compare
Choose a tag to compare
  • Adding assets on page routes did not clear on render. The Asset system now has
    addCssOnce and addScriptOnce these methods are cleared with each call to the
    asset allCss and allScript methods.
  • Adds Dynamic Connector support. The connector folder can now contain generic
    connectors that are scanned and connected at init time.
  • All connector support: dynamic, email, db are now scanned for in their
    respective user space folders. Such as projectroot/db/mongodb.js etc.
  • Includes the StretchFS connector as the first of the dynamic connectors.
  • Changes the outlook on build chains. Extra chains are now meant to deferred
    while maintaining the levels. Such as local and module now have
    localExtra and moduleExtra these help facilitate loading extra needed
    dependencies in each portion of the chain and helping to avoid duplicates.
  • Moves moment into the required build chain to support various needs.
  • Add removeScript and removeCss parameters to allow removal of system
    level components in lieu of custom components or a lighter stack.

3.7.5

11 Apr 05:21
Compare
Choose a tag to compare
  • Move bootstrap into required build chain.

3.7.4

11 Apr 04:16
Compare
Choose a tag to compare
  • Disable performance hints by default when building, however allow them to be
    enabled by passing node app kado bundle --hints which will complain about
    large JS files and other performance issues.

3.7.3

10 Apr 00:03
Compare
Choose a tag to compare
  • Bug fix to required bundle process now assigns jquery to
    window.$, window.jQuery and window.jquery

3.7.2

09 Apr 23:46
Compare
Choose a tag to compare
  • Add the parameters addCss: [{}], addScript: [{}] to each interface
    declaration in order to add additional resources directly from the app config.
    Each object requires the key uri such as {uri: '/a.css'} or
    addScript: [{uri: '/new.js', defer: false}] which loads a new JS resource
    synchronously (all default adds are deferred).

3.7.1

09 Apr 22:00
Compare
Choose a tag to compare
  • Bug fixes to bundle root handling.
  • Use proper app suite on post install generation.
  • Start using Git tags and Github releases.
  • Drop unused dependencies.
  • Use parallel tersing for bundle speedups.