Skip to content

Commit

Permalink
Merge pull request #2 from roalcantara/fix-release-dist-folder
Browse files Browse the repository at this point in the history
Update the released /dist folder
  • Loading branch information
roalcantara authored Aug 7, 2018
2 parents 45a4b5c + 597d28e commit 3b50a35
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a name="0.1.3"></a>
## [0.1.3](https://github.com/roalcantara/factory-bot-ts/compare/v0.1.2...v0.1.3) (2018-08-07)
<a name="0.1.4"></a>
## [0.1.4](https://github.com/roalcantara/factory-bot-ts/compare/v0.1.3...v0.1.4) (2018-08-07)


### Bug Fixes
Expand All @@ -8,6 +8,7 @@
* **factories:** Fix the count method ([9b29a62](https://github.com/roalcantara/factory-bot-ts/commit/9b29a62))
* **factories:** Require partial attributes ([22f55c6](https://github.com/roalcantara/factory-bot-ts/commit/22f55c6))
* **release:** Add dist folder ([8754133](https://github.com/roalcantara/factory-bot-ts/commit/8754133))
* **release:** Update dist folder ([a237927](https://github.com/roalcantara/factory-bot-ts/commit/a237927))


### Features
Expand Down
1 change: 1 addition & 0 deletions dist/factory-bot.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export declare class FactoryBot {
define<T = {}>(name: string, attributes: Partial<T>, clazz?: {
new (): T;
} | any): void;
extend<T = {}>(name: string, trait: string, attributes: Partial<T>): void;
instantiate<T>(type: (new () => T)): T;
build<T = {}>(name: string, attributes?: Partial<T>): T;
buildList<T = {}>(name: string, length?: number, attributes?: Partial<T>): Array<T>;
Expand Down
12 changes: 10 additions & 2 deletions dist/factory-bot.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/factory-bot.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "factory-bot-ts",
"version": "0.1.3",
"version": "0.1.4",
"description": "A simple library for setting up TypeScript objects as test data - heavily inspired by the awesome Ruby's factory_bot",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 3b50a35

Please sign in to comment.