Skip to content
This repository has been archived by the owner on May 6, 2019. It is now read-only.

Releases: helpscout/seed-cli

Seed CLI - v0.2.2

20 Jul 02:08
Compare
Choose a tag to compare

Changes

  • adds color scheme/theme to g prompt
  • improves pack template files for render

v0.2.1

13 Jul 16:58
Compare
Choose a tag to compare

Fix typo in banner.js template

Seed CLI - v0.2.0

13 Jul 16:43
Compare
Choose a tag to compare

Changes

Important note for Packs!

The previous pack structure had a namespace issue that could potentially prevent the importing of .scss files of the same name.

This update fixes that issue, and renames the __all.scss main file to __index.scss.

The new @import method will be like:

@import "pack/seed-salad/_index";

The scheme works like:
pack -> Namespace to identify that this is a seed pack
seed-salad -> The name of the seed pack
_index -> The file(s) to import

Example of new naming scheme for importing mixins (of the same name) files from multiple packs:

@import "pack/seed-hamburger/mixins/sauces";
@import "pack/seed-pizza/mixins/sauces";
@import "pack/seed-hotdog/mixins/sauces";

Seed CLI - v0.1.2

08 Jul 14:42
Compare
Choose a tag to compare

Changes

  • Resolves + fixes node versions. We're gonna be sticking with node v4 for all seed things <3

Seed CLI - v0.1.0

08 Jul 12:46
Compare
Choose a tag to compare

Changes

  • Updates node version to use 0.12
  • Updates node engine and travis node version in pack template to 0.12
  • Updates scripts to be ES5 compatible

TODO:
Probably a good idea to use commander for the CLI logs

Note

The version has been bumped from v0.0.x to v0.x.0 due to the node engine change. This shouldn't affect anything, but I'm just erring on the side of caution.

Seed CLI - v0.0.12

08 Jul 00:34
Compare
Choose a tag to compare

Changes

  • Improves the includePaths output in index.js (for pack generation)

Seed CLI - v0.0.11

08 Jul 00:01
Compare
Choose a tag to compare

Changes

Adds build.js script to seed new

Instead of relying on "scripts" in package.json

Seed CLI - v0.0.10

07 Jul 17:24
Compare
Choose a tag to compare

Changes

  • Bug fix for seed g utility module. The generated utilities directory no longer has an extra s at the end.

Seed CLI - v0.0.9

07 Jul 17:04
Compare
Choose a tag to compare

Changes

screen shot 2016-07-07 at 1 02 13 pm

  • Adds keywords to pack template's package.json

Seed CLI - v0.0.8

06 Jul 17:28
Compare
Choose a tag to compare

Changes

screen shot 2016-07-06 at 1 22 31 pm

Adds test runner + generator
  • refactors generator code
  • adds generator for test
  • adds generator command for test "seed g test awesome"
  • adds test.scss template
Resolves

#6