Skip to content

Commit

Permalink
Merge 0d33c0b into 533747c
Browse files Browse the repository at this point in the history
  • Loading branch information
KalleV committed Aug 2, 2018
2 parents 533747c + 0d33c0b commit 613c8f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 2 additions & 4 deletions cli/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import * as rename from 'gulp-rename'
import {PackageUpdate} from '../lib/package/update'
import {startCase} from 'lodash'

const _ = require('underscore.string'),
inquirer = require('inquirer');
const _ = require('underscore.string');
const inquirer = require('inquirer');

function padLeft(dateValue: number) {
return (dateValue < 10) ? '0' + dateValue : dateValue.toString();
Expand Down Expand Up @@ -65,8 +65,6 @@ module.exports = {
answers.appYear = year;

gulp.src([
`${__dirname}/../.eslintrc.json`,
`${__dirname}/../.eslintignore`,
`${__dirname}/../templates/common/**`,
`${__dirname}/../templates/${answers.projectType}-package/**`
])
Expand Down
8 changes: 4 additions & 4 deletions templates/api-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"url": "https://github.com/LabShare/<%= appNameSlug %>/issues"
},
"license": "MIT",
"packageDependencies": {
"services": "*"
},
"packageDependencies": [
"@labshare/services"
],
"dependencies": {
"@labshare/services": "https://github.com/LabShare/services"
"@labshare/services": "^3.0.0"
}
}

0 comments on commit 613c8f2

Please sign in to comment.