Skip to content

Commit c22ea9a

Browse files
Moves files from lib to src; Prototypes repo mode once again
1 parent 6ac5b10 commit c22ea9a

File tree

244 files changed

+1952
-4030
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+1952
-4030
lines changed

example/app.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Sequelize} from "../index";
1+
import {Sequelize} from "../src";
22

33
/* tslint:disable:no-unused-new */
44

example/models/Author.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Table, Model, PrimaryKey, Column, AutoIncrement, BelongsToMany,
2-
DefaultScope, Scopes} from "../../index";
2+
DefaultScope, Scopes} from "../../src";
33
import {AuthorFriend} from "./AuthorFriend";
44
import Book from "./Book";
55

example/models/AuthorFriend.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Model, Table, PrimaryKey, Column, ForeignKey} from "../../index";
1+
import {Model, Table, PrimaryKey, Column, ForeignKey} from "../../src";
22
import {Author} from "./Author";
33

44
@Table

example/models/Book.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Model, Table, Column, BelongsToMany, Scopes, DataType} from '../../index';
1+
import {Model, Table, Column, BelongsToMany, Scopes, DataType} from '../../src';
22
import {Author} from "./Author";
33

44
@Scopes({

example/models/Comment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Table, Model, PrimaryKey, Column, AutoIncrement, BelongsTo, ForeignKey, Length, DataType} from "../../index";
1+
import {Table, Model, PrimaryKey, Column, AutoIncrement, BelongsTo, ForeignKey, Length, DataType} from "../../src";
22
import {Post} from "./Post";
33
import {Author} from "./Author";
44

example/models/Post.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
Table, Model, PrimaryKey, Column, AutoIncrement, BelongsToMany,
33
ForeignKey, BelongsTo, HasMany, Scopes
4-
} from "../../index";
4+
} from "../../src";
55
import {Comment} from "./Comment";
66
import {PostTopic} from "./PostTopic";
77
import {Topic} from "./Topic";

example/models/PostTopic.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Model, Table, PrimaryKey, Column, ForeignKey} from "../../index";
1+
import {Model, Table, PrimaryKey, Column, ForeignKey} from "../../src";
22
import {Post} from "./Post";
33
import {Topic} from "./Topic";
44

example/models/Topic.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Table, Model, PrimaryKey, AutoIncrement, Column, BelongsToMany} from "../../index";
1+
import {Table, Model, PrimaryKey, AutoIncrement, Column, BelongsToMany} from "../../src";
22
import {Post} from "./Post";
33
import {PostTopic} from "./PostTopic";
44

example/models/validation-only/Person.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Table, Model, DataType, Column, Length} from "../../../index";
1+
import {Table, Model, DataType, Column, Length} from "../../../src";
22

33
@Table
44
export class Person extends Model<Person> {

example/tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"exclude": [
2121
"../node_modules",
22-
"../lib",
23-
"../index.ts"
22+
"../src",
23+
"../src/index.ts"
2424
]
2525
}

index.ts

-6
This file was deleted.

lib/hooks/shared/hooks.d.ts

-314
This file was deleted.

0 commit comments

Comments
 (0)