Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Releases: dwightjack/umeboshi-cli

v3.0.0

30 Oct 21:29
Compare
Choose a tag to compare

Major Release

Features

  • --dry-run option to prevent actual file writing
  • downloaded packages are cached for quicker access (use ume clean to cleanup the cache)
  • bitbucket repository support
  • allow plain github and bitbucket repos (will just download and unzip the repo)
  • github and bitbucket repositories accept tags, branches and valid semver ranges

Breaking changes

  • official template don't extend base anymore. Provide all files into the template folder
  • undocumented partial middleware has been removed
  • official template URI format is dwightjack/umeboshi-template-<name>

Internals

  • new pkg-resolve middleware. Cycles *-umeboshi-* modules in package.json and adds their peerDependencies to devDependencies

v2.0.0

30 Jun 07:47
Compare
Choose a tag to compare

Major Release

Breaking Changes

  • template entrypoints' (index.js) exports has a new format. Instead of a single function returning an object, you need to export multiple function factories example.

New Features and Minor changes

  • new command scaffold. Refer to docs for details. Thanks to @lorenzomigliorero for the suggestion.
  • Added a ume command alias. Starting from v2.0.0 you can run ume create base folder.
  • Added support for custom project templates stored on github and local folders:
umeboshi create user/repo folder # point to github repository `github:user/repo`

umeboshi create /path/to/folder folder # point to a local folder in your HD