Skip to content

Commit

Permalink
fix: add uuid as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarconr committed Feb 3, 2022
1 parent bfaaccd commit 95e4a99
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 19 deletions.
39 changes: 24 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"devDependencies": {
"@babel/runtime": "^7.14.0",
"@types/jest": "^27.0.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
Expand All @@ -39,18 +40,19 @@
"rollup": "^1.20.3",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.0",
"rollup-plugin-uglify": "^6.0.2",
"ts-jest": "^27.0.5",
"tslib": "2.3.1",
"tslint": "^5.18.0",
"typescript": "^4.4.3",
"uglify-js": "^3.6.0",
"uuidv4": "6.2.12",
"tslib": "2.3.1"
"uglify-js": "^3.6.0"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.17",
"tiny-emitter": "^2.1.0"
"tiny-emitter": "^2.1.0",
"uuid": "^8.3.2"
}
}
4 changes: 4 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import minify from 'rollup-plugin-babel-minify';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';

import nodePolyfills from 'rollup-plugin-node-polyfills';


export default {
input: './src/index.ts',
output: [
Expand All @@ -13,6 +16,7 @@ export default {
}
],
plugins: [
nodePolyfills(),
resolve({
}),
commonjs({ // rollup-plugin-commonjs
Expand Down

0 comments on commit 95e4a99

Please sign in to comment.