1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00

Minor cleanup after lerna migration. (#142)

* Minor cleanup after lerna migration.

- fix correct verison number (1.0.0-alpha.2)
- added missing server.js inside unleash-api

* upgrade db-migrate
This commit is contained in:
Ivar Conradi Østhus 2016-06-18 21:24:01 +02:00 committed by GitHub
parent 8af8971911
commit 52acb73926
4 changed files with 15 additions and 8 deletions

View File

@ -1,7 +1,7 @@
{
"name": "unleash-api",
"description": "unleash your features",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"keywords": [
"unleash",
"feature toggle",
@ -48,7 +48,7 @@
"bluebird": "2.9.14",
"body-parser": "1.15.0",
"cookie-parser": "^1.4.1",
"db-migrate": "0.9.23",
"db-migrate": "0.9.25",
"deep-diff": "^0.3.3",
"errorhandler": "1.3.5",
"express": "4.13.4",
@ -66,6 +66,7 @@
"mocha": "^2.4.5",
"mocha-lcov-reporter": "1.2.0",
"supertest": "^1.2.0",
"supervisor": "^0.10.0"
"supervisor": "^0.10.0",
"unleash-frontend": "1.0.0-alpha.2"
}
}

View File

@ -0,0 +1,6 @@
'use strict';
const unleash = require('./server-impl');
const { publicFolder } = require('unleash-frontend');
unleash.start({ publicFolder });

View File

@ -1,7 +1,7 @@
{
"name": "unleash-frontend",
"description": "unleash your features",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"keywords": [
"unleash",
"feature toggle",
@ -52,7 +52,7 @@
"react-tools": "^0.13.1",
"supertest": "^1.2.0",
"supervisor": "^0.10.0",
"unleash-api": "1.0.0-alpha.1"
"unleash-api": "1.0.0-alpha.2"
},
"jest": {
"scriptPreprocessor": "<rootDir>/jest-preprocessor.js",

View File

@ -1,7 +1,7 @@
{
"name": "unleash-server",
"description": "unleash your features",
"version": "1.0.0-alpha.1",
"version": "1.0.0-alpha.2",
"keywords": [
"unleash",
"feature toggle",
@ -31,8 +31,8 @@
"test:ci": "npm run test"
},
"dependencies": {
"unleash-api": "1.0.0-alpha.1",
"unleash-frontend": "1.0.0-alpha.1"
"unleash-api": "1.0.0-alpha.2",
"unleash-frontend": "1.0.0-alpha.2"
},
"devDependencies": {