Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add browserify and more packages #169

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 96 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18184,6 +18184,102 @@
},
"cytoscape-cola": {
"version": "*"
},
"console-browserify": {
"version": "*"
},
Comment on lines +18188 to +18190
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dependency versions are set to "*". Consider specifying exact versions to avoid potential compatibility issues.

Using wildcard versions can lead to unpredictable behavior in production due to updates in dependencies that might introduce breaking changes. It's recommended to lock dependencies to specific versions or at least use version ranges to safeguard against breaking changes. Here's an example change for one of the dependencies:

- "console-browserify": {
-   "version": "*"
+ "console-browserify": {
+   "version": "1.2.0"
}

Please apply similar changes for other dependencies.

Also applies to: 18192-18194, 18196-18198, 18200-18202, 18204-18206, 18208-18210, 18212-18214, 18216-18218, 18220-18222, 18224-18226, 18228-18230, 18232-18234, 18236-18238, 18240-18242, 18244-18246, 18248-18250, 18252-18254, 18256-18258, 18260-18262, 18264-18266, 18268-18270, 18272-18274, 18276-18278, 18280-18282

"constants-browserify": {
"version": "*"
},
"domain-browser": {
"version": "*"
},
"punycode": {
"version": "*"
},
"timers-browserify": {
"version": "*"
},
"tty-browserify": {
"version": "*"
},
"vm-browserify": {
"version": "*"
},
"ieee754": {
"version": "*"
},
"isarray": {
"version": "*"
},
"browserify-cipher": {
"version": "*"
},
"browserify-sign": {
"version": "*"
},
"create-ecdh": {
"version": "*"
},
"diffie-hellman": {
"version": "*"
},
"pbkdf2": {
"version": "*"
},
"public-encrypt": {
"version": "*"
},
"randombytes": {
"version": "*"
},
"randomfill": {
"version": "*"
},
"core-util-is": {
"version": "*"
},
"process-nextick-args": {
"version": "*"
},
"util-deprecate": {
"version": "*"
},
"builtin-status-codes": {
"version": "*"
},
"to-arraybuffer": {
"version": "*"
},
"xtend": {
"version": "*"
},
"call-bind": {
"version": "*"
},
"define-properties": {
"version": "*"
},
"has-symbols": {
"version": "*"
},
"object-keys": {
"version": "*"
},
"cipher-base": {
"version": "*"
},
"ripemd160": {
"version": "*"
},
"sha.js": {
"version": "*"
},
"side-channel": {
"version": "*"
},
"hash-base": {
"version": "*"
}
}
}
Loading