This repository was archived by the owner on Jul 8, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import * as rename from 'gulp-rename'
7
7
import { PackageUpdate } from '../lib/package/update'
8
8
import { startCase } from 'lodash'
9
9
10
- const _ = require ( 'underscore.string' ) ,
11
- inquirer = require ( 'inquirer' ) ;
10
+ const _ = require ( 'underscore.string' ) ;
11
+ const inquirer = require ( 'inquirer' ) ;
12
12
13
13
function padLeft ( dateValue : number ) {
14
14
return ( dateValue < 10 ) ? '0' + dateValue : dateValue . toString ( ) ;
@@ -65,8 +65,6 @@ module.exports = {
65
65
answers . appYear = year ;
66
66
67
67
gulp . src ( [
68
- `${ __dirname } /../.eslintrc.json` ,
69
- `${ __dirname } /../.eslintignore` ,
70
68
`${ __dirname } /../templates/common/**` ,
71
69
`${ __dirname } /../templates/${ answers . projectType } -package/**`
72
70
] )
Original file line number Diff line number Diff line change 14
14
"url" : " https://github.com/LabShare/<%= appNameSlug %>/issues"
15
15
},
16
16
"license" : " MIT" ,
17
- "packageDependencies" : {
18
- "services" : " * "
19
- } ,
17
+ "packageDependencies" : [
18
+ " @labshare/ services"
19
+ ] ,
20
20
"dependencies" : {
21
- "@labshare/services" : " https://github.com/LabShare/services "
21
+ "@labshare/services" : " ^3.0.0 "
22
22
}
23
23
}
You can’t perform that action at this time.
0 commit comments