Skip to content
This repository was archived by the owner on Jul 4, 2018. It is now read-only.

Commit b7be929

Browse files
committed
Update versions.
1 parent e550a88 commit b7be929

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

generators/app/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,17 +178,17 @@ Welcome to the FoalTS generator! The following questions will help you create yo
178178
let dbDependencies = [];
179179
switch(this.database) {
180180
case 'sqlite':
181-
dbDependencies.push('@foal/sequelize@0.4.0-beta.1', 'sqlite3');
181+
dbDependencies.push('@foal/sequelize@0.4.0-beta.2', 'sqlite3');
182182
break;
183183
case 'postgres':
184-
dbDependencies.push('@foal/sequelize@0.4.0-beta.1', 'pg@6', 'pg-hstore');
184+
dbDependencies.push('@foal/sequelize@0.4.0-beta.2', 'pg@6', 'pg-hstore');
185185
break;
186186
case 'mysql':
187-
dbDependencies.push('@foal/sequelize@0.4.0-beta.1', 'mysql2');
187+
dbDependencies.push('@foal/sequelize@0.4.0-beta.2', 'mysql2');
188188
break;
189189
}
190190
if (this.authentication) {
191-
dbDependencies.push('@foal/authentication@0.4.0-beta.1', 'bcrypt-nodejs');
191+
dbDependencies.push('@foal/authentication@0.4.0-beta.2', 'bcrypt-nodejs');
192192
}
193193
if (dbDependencies.length !== 0) {
194194
this.npmInstall(dbDependencies, {}, () => {}, { cwd: this.names.kebabName });

generators/app/templates/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
"helmet": "^3.9.0",
2424
"@types/node": "^8.0.47",
2525
"@foal/ajv": "^0.4.0-beta.1",
26-
"@foal/common": "^0.4.0-beta.1",
26+
"@foal/common": "^0.4.0-beta.2",
2727
"@foal/core": "^0.4.0-beta.1",
28-
"@foal/ejs": "^0.4.0-beta.1",
28+
"@foal/ejs": "^0.4.0-beta.2",
2929
"@foal/express": "^0.4.0-beta.1",
3030
"source-map-support": "^0.5.1"
3131
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-foal",
3-
"version": "0.4.0-beta.1",
3+
"version": "0.4.0-beta.2",
44
"description": "Yeoman generators to quickly start a project and create components (services, controllers, etc.)",
55
"files": [
66
"generators"

0 commit comments

Comments
 (0)