Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Fix incompation caused by universal-user-agent, close #7
Browse files Browse the repository at this point in the history
  • Loading branch information
voldikss committed Dec 31, 2019
1 parent cdfafe2 commit 13f8d3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coc-todolist",
"version": "1.0.7",
"version": "1.0.8",
"description": "todolist/task manager extension for coc.nvim",
"main": "lib/index.js",
"repository": {
Expand Down
7 changes: 5 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
const path = require('path');
const path = require('path')

module.exports = {
entry: './src/index.ts',
target: 'node',
mode: 'none',
resolve: {
alias: {
'universal-user-agent$': 'universal-user-agent/dist-node/index.js'
},
mainFields: ['module', 'main'],
extensions: ['.js', '.ts']
},
Expand Down Expand Up @@ -39,4 +42,4 @@ module.exports = {
__dirname: false,
__filename: false
}
};
}

0 comments on commit 13f8d3a

Please sign in to comment.