Skip to content

Commit

Permalink
feat: use lodash.template for smaller publish size
Browse files Browse the repository at this point in the history
  • Loading branch information
leftstick committed Dec 21, 2019
1 parent 7c5b2df commit c4d4b94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@
]
},
"devDependencies": {
"@types/lodash": "^4.14.123",
"@types/lodash.template": "^4.4.6",
"@types/node": "^11.13.0",
"typescript": "^3.4.2",
"vscode": "^1.1.33"
},
"dependencies": {
"lodash": "^4.17.11"
"lodash.template": "^4.5.0"
}
}
2 changes: 1 addition & 1 deletion src/template/gitk.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as vscode from 'vscode'
import * as path from 'path'
import t from 'lodash/template'
import t from 'lodash.template'

import { Commit } from '../models/commit'

Expand Down
2 changes: 1 addition & 1 deletion src/template/gitkrepo.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as vscode from 'vscode'
import * as path from 'path'
import t from 'lodash/template'
import t from 'lodash.template'

import { Commit } from '../models/commit'

Expand Down

0 comments on commit c4d4b94

Please sign in to comment.