Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
* fix type error in `@rollup/plugin-replace` pending rollup/plugins#813

closes #204
  • Loading branch information
danielroe committed Feb 22, 2021
1 parent 1be6ee2 commit f6b3b2b
Show file tree
Hide file tree
Showing 4 changed files with 385 additions and 299 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Expand Up @@ -17,7 +17,6 @@ module.exports = {
'eslint:recommended',
'plugin:prettier/recommended',
'prettier',
'prettier/@typescript-eslint',
'plugin:jest/recommended',
],
rules: {
Expand Down
38 changes: 19 additions & 19 deletions package.json
Expand Up @@ -49,9 +49,9 @@
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-replace": "^2.3.4",
"cac": "^6.7.1",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.0",
"cac": "^6.7.2",
"chalk": "^4.1.0",
"consola": "^2.15.3",
"defu": "^3.2.2",
Expand All @@ -60,41 +60,41 @@
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"jiti": "^1.3.0",
"rollup": "^2.38.5",
"rollup": "^2.39.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-esbuild": "2.5.2",
"sort-package-json": "^1.48.1",
"sort-package-json": "^1.49.0",
"typescript": "^4.1.5",
"upath": "^2.0.1",
"v8-compile-cache": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@babel/runtime": "^7.12.13",
"@babel/core": "^7.12.17",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@babel/runtime": "^7.12.18",
"@release-it/conventional-changelog": "^2.0.0",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^9.0.6",
"@types/fs-extra": "^9.0.7",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-loader": "^8.2.2",
"codecov": "^3.8.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.0.9",
"husky": "^5.1.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"release-it": "14.3.0",
"release-it": "14.4.1",
"semver": "^7.3.4",
"tsd": "^0.14.0",
"typescript": "^4.1.5"
Expand Down
1 change: 1 addition & 0 deletions src/core/build/rollup.ts
Expand Up @@ -98,6 +98,7 @@ export function getRollupConfig(
}),
replacePlugin({
exclude: 'node_modules/**',
preventAssignment: true as any,
delimiters: ['', ''],
values: {
...includeDefinedProperties({ __NODE_ENV__ }),
Expand Down

0 comments on commit f6b3b2b

Please sign in to comment.