availity-workflow

Upgradable workflow for Availity boilerplate projects

MIT License

Downloads
4.2K
Stars
28
Committers
49

Bot releases are visible (Hide)

availity-workflow -

Published by robmcguinness over 8 years ago

Fix

  • 5d63a7b add error handling to gulp bump task
availity-workflow -

Published by robmcguinness over 8 years ago

Dev

  • 547b28e, 1e45afe use npm scripts instead of gulp
  • 8591c2d switch to globby

Added

  • 8bd2f86, 923f77c, a413696 update release task for pre-release and custom semver versions

Fix

  • 9f846b6 fix hapi plugin for broken changes in lodash v4
availity-workflow -

Published by robmcguinness over 8 years ago

availity-workflow -

Published by robmcguinness about 9 years ago

Fixed

  • c171072 fix typo for proxy contexts that was causing TypeError: undefined is not a function
availity-workflow -

Published by robmcguinness about 9 years ago

Fixed

  • 3e3b9a5, 10c5caf build proxy context dynamically from developer config. Previous sample configuration was wrong. A configuration proxies array must be defined in the server connection for the context to be honored when proxying.
legacyWeb: {
  proxy: true,
  port: 8080,
  proxies: [
    {
      context: '/availity'
    }
  ]
}
  • df9a3c2 Remove Istanbul instrumentation on the source code when running gulp test:server
availity-workflow -

Published by robmcguinness about 9 years ago

Fixed

  • 3e3b9a5, 10c5caf build proxy context dynamically from developer config
availity-workflow -

Published by robmcguinness about 9 years ago

Fixed

  • 7511e6d add instanbul instrumenter to Karma
availity-workflow -

Published by robmcguinness about 9 years ago

Fixed

  • 9a7f172 fix spacing in update message
  • 6d551ce export availity-workflow context object so projects can reuse settings functionality
var context = workflow.use({
  gulp: gulp
});

var dest = context.settings.isProduction() ? path.join('./dist/images') : path.join('./build/images');

var destImages = path.join(dest, '/images');
gulp.task('copy:assets', function() {
  gulp.src('bower_components/availity-assets/dist/**/*')
    .pipe(gulp.dest(destImages));
});
availity-workflow -

Published by robmcguinness about 9 years ago

Improvements

  • ed919b3 notify users of version upgrade

av about

image

gulp

image

Fixed

  • 46fb61e logger was hiding warning messages
  • 53310b9 Fix release task so deleted files are included in the git commit

Added

  • 75b62e8 generate README during init processing in CLI /node_modules/.bin/av init
availity-workflow -

Published by robmcguinness about 9 years ago

Improvements

  • 75bc76835aceae0c77b6d73d428ee9e3a90d0307 change default bindable address to 127.0.0.1. Windows users were reporting EADDRNOTAVAIL errors when proxying to API services using Hapi proxies.
  • 6c6a7b71ff47653c2741833c1e0d7f7abb48d35a switch to ESLint config eslint-config-availity
  • bf2084762d0ea580a634aaca358923759089a906, 3265180d284a9597f6df851224d42c2ca7618db1, e5d21bde1b00a394c95610223dd11b71c252b9d6 README updates
availity-workflow -

Published by robmcguinness about 9 years ago

Fixed

  • 91514d2281f4a032a336b8a9339627c4176513a1 proxies were only working for GET requests
  • f6c4ab083647287fc2f5840b4c916413601ce0e9 downgrade css-loader to v0.14.5 to fix issue with non-breaking spaces in CSS

Improvements

  • change the logger to use https://www.npmjs.com/package/eazy-logger
  • 1e8df3dd85dbaab6b34b6d8bd0b840088f381389 bump availity-ekko 1.0.0
  • only show missing developer-config.js on server startup. the message was confusing users thinking there was an error
  • show message when server has started + webpack complication complete
  • add update notifier for availity-workflow

Added

  • 4b0538b5c7c61ab59d5d57a5983673da1549728a NODE_ENV=stage gulp av:release
availity-workflow -

Published by robmcguinness about 9 years ago

Fixed

  • 9253ef071835870fde2df8c87241dce609be0844 ensure gulp tasks return a stream. previously gulp av:test was not running properly because the stream was closing early
availity-workflow -

Published by robmcguinness about 9 years ago

Fixes

  • 39955e5 release task was broken. sync the clean task for /dist and /build folder
availity-workflow -

Published by robmcguinness about 9 years ago

🎱 Initial Release