Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
build: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oae committed Feb 26, 2021
1 parent 631b43a commit deb1dfa
Show file tree
Hide file tree
Showing 4 changed files with 720 additions and 347 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = {
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
extends: [
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
],
rules: {
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/events": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"rollup": "^2.26.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-scss": "^2.6.0",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"rollup": "^2.39.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-scss": "^2.6.1",
"ts-for-gir": "https://github.com/oae/ts-for-gjs",
"typescript": "^4.0.2"
"typescript": "^4.2.2"
},
"dependencies": {
"events": "^3.2.0",
"fast-xml-parser": "^3.17.4",
"fast-xml-parser": "^3.18.0",
"grest": "^1.2.0"
}
}
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const execute = async (command: string): Promise<string> => {
} else if (stdout) {
resolve(stdout.trim());
} else {
resolve();
resolve('');
}
});
});
Expand Down
Loading

0 comments on commit deb1dfa

Please sign in to comment.