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

Releases: ts-archive/ts-transforms

beta 0.6.0

08 Jan 17:57
6fc1cb5
Compare
Choose a tag to compare

can now work with plugins;
opConfig changes:

  • rules_file && asset_name => rules: ['assetName:path']
  • plugins: ['assetName:path']
  • selector_config => types
  • removed actions, connection and index fields
    Example:
        {
            type: 'transform',
            rules: ['some/path', 'other/path')],
            plugins: ['path/to/plugin']
            types: { _created: 'date' }
        };

Example Plugin:

import NoOp from './noop';
import Double from './double';

export default class Plugin {
    init() {
        return {
            noop: NoOp,
            double: Double
        };
    }
}

beta 0.5.0

21 Dec 16:09
c9dbd39
Compare
Choose a tag to compare
  • export Loader class to allow individual phases to function

beta 0.4.0

21 Dec 15:24
42a3128
Compare
Choose a tag to compare
  • changed id/refs to tag/follow
  • general bug fixes
  • phase refactoring and exporting of classes
  • can pipe elasticsearch responses to the cli

beta 0.2.0

13 Dec 18:33
ad55d5e
Compare
Choose a tag to compare

This includes cli -p to show performance of operations, it defaults to not show so that it can be pipe-able.
This also includes various code fixes and refactors

beta 0.1.0

12 Dec 00:14
Compare
Choose a tag to compare

First round release for further testing and exploration