This repository has been archived by the owner on Jan 18, 2019. It is now read-only.
Releases: ts-archive/ts-transforms
Releases · ts-archive/ts-transforms
beta 0.6.0
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
- export Loader class to allow individual phases to function
beta 0.4.0
- 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
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
First round release for further testing and exploration