Skip to content

Releases: Chi-EEE/ryver

0.1.7

Choose a tag to compare

@github-actions github-actions released this 01 Jan 19:02

0.1.6

Choose a tag to compare

@Chi-EEE Chi-EEE released this 31 May 21:59

If the type is the same for a column then output it as that specific type:
e.g.

Name,Type
RedCar,Car
BlueCar,Car
GreenCar,Car

=>

export type Car = {
	Name: string;
	Type: 'Car';
};

local Car = {}

Car.RedCar = {
	Name = 'RedCar';
	Type = 'Car';
};

Car.BlueCar = {
	Name = 'BlueCar';
	Type = 'Car';
};

Car.GreenCar = {
	Name = 'GreenCar';
	Type = 'Car';
};

return Car;

0.1.5

Choose a tag to compare

@Chi-EEE Chi-EEE released this 30 May 17:14

Able to output as file

0.1.4

Choose a tag to compare

@Chi-EEE Chi-EEE released this 24 May 18:09

Keep first column

0.1.3

Choose a tag to compare

@Chi-EEE Chi-EEE released this 22 May 15:28

CSV Support
Luau: Allow numbers, booleans, nil as id