File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 3
3
yarn install --ignore-engines;
4
4
5
5
if [ " $DIALECT " = " postgres" ]; then
6
- yarn add pg@^8 pg-hstore@^2 pg-types@^2 --ignore-engines;
6
+ yarn add pg@^8 pg-hstore@^2 pg-types@^2 @sequelize/postgres --ignore-engines;
7
7
elif [ " $DIALECT " = " postgres-native" ]; then
8
- yarn add pg@^8 pg-hstore@^2 pg-types@^2 pg-native --ignore-engines;
8
+ yarn add pg@^8 pg-hstore@^2 pg-types@^2 pg-native @sequelize/postgres --ignore-engines;
9
9
elif [ " $DIALECT " = " mysql" ]; then
10
- yarn add mysql2@^2 --ignore-engines;
10
+ yarn add mysql2@^2 @sequelize/mysql --ignore-engines;
11
11
elif [ " $DIALECT " = " mariadb" ]; then
12
- yarn add mariadb@^2 --ignore-engines;
12
+ yarn add mariadb@^2 @sequelize/mariadb --ignore-engines;
13
13
elif [ " $DIALECT " = " sqlite" ]; then
14
- yarn add sqlite3@^5 --ignore-engines;
14
+ yarn add sqlite3@^5 @sequelize/sqlite3 --ignore-engines;
15
15
elif [ " $DIALECT " = " mssql" ]; then
16
- yarn add tedious@^8 --ignore-engines;
16
+ yarn add tedious@^8 @sequelize/mssql --ignore-engines;
17
17
fi
Original file line number Diff line number Diff line change 13
13
"cross-env" : " ^7" ,
14
14
"fs-jetpack" : " ^4" ,
15
15
"sequelize" : " ^6" ,
16
- "@sequelize/core" : " alpha " ,
16
+ "@sequelize/core" : " latest " ,
17
17
"sinon" : " ^13" ,
18
18
"sinon-chai" : " ^3"
19
19
},
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ You'll need to install the `pg` package and have a postgres database running.
52
52
53
53
``` shell
54
54
# Do this only once.
55
- npm install pg
55
+ npm install pg @sequelize/postgres
56
56
# or
57
- npm install pg-native
57
+ npm install pg-native @sequelize/postgres
58
58
59
59
# if you need to use DataTypes.HSTORE, you also need this dependency
60
60
npm install pg-hstore
@@ -76,7 +76,7 @@ npm run stop:postgres
76
76
77
77
``` shell
78
78
# Do this only once.
79
- npm install mariadb
79
+ npm install mariadb @sequelize/mariadb
80
80
81
81
# Start the mariadb database using docker.
82
82
# Requires docker. You can also run your own database if you prefer.
@@ -93,7 +93,7 @@ npm run stop:mariadb
93
93
94
94
``` shell
95
95
# Do this only once.
96
- npm install mysql2
96
+ npm install mysql2 @sequelize/mysql
97
97
98
98
# Start the mysql database using docker.
99
99
# Requires docker. You can also run your own database if you prefer.
@@ -110,7 +110,7 @@ npm run stop:mysql
110
110
111
111
``` shell
112
112
# Do this only once.
113
- npm install tedious
113
+ npm install tedious @sequelize/mssql
114
114
115
115
# Start the mssql database using docker.
116
116
# Requires docker. You can also run your own database if you prefer.
You can’t perform that action at this time.
0 commit comments