Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mobx-devtools

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-devtools - npm Package Compare versions

Comparing version 0.9.3 to 0.9.4

lib/chrome.zip

6

CHANGELOG.md
# Changelog
## [Unreleased]
## [0.9.4]
### Fixed
Fail gracefully if using unsupported mobx versions.
## [0.9.3]

@@ -4,0 +10,0 @@ ### Fixed

2

lib/chrome/manifest.json

@@ -1,1 +0,1 @@

{"manifest_version":2,"name":"MobX Developer Tools","description":"Dev-tools for MobX and React","minimum_chrome_version":"44","icons":{"16":"icons/Icon-16.png","48":"icons/Icon-48.png","128":"icons/Icon-128.png"},"devtools_page":"panel-loader.html","commands":{"open-devtools-window":{"suggested_key":{"default":"Alt+Shift+M"},"description":"DevTools window to left"}},"content_security_policy":"script-src 'self'; object-src 'self'","web_accessible_resources":["main.html","panel.html","backend.js"],"background":{"scripts":["background.js"],"persistent":false},"permissions":["contextMenus","storage","file:///*","http://*/*","https://*/*"],"browser_action":{"default_icon":{"16":"icons/toolbar-chrome.png","32":"icons/toolbar-chrome@2x.png"},"default_title":"Open"},"content_scripts":[{"matches":["<all_urls>"],"js":["injectGlobalHook.js"],"run_at":"document_start"}],"version":"0.9.2","version_name":"0.9.2-dev"}
{"manifest_version":2,"name":"MobX Developer Tools","description":"Dev-tools for MobX and React","minimum_chrome_version":"44","icons":{"16":"icons/Icon-16.png","48":"icons/Icon-48.png","128":"icons/Icon-128.png"},"devtools_page":"panel-loader.html","commands":{"open-devtools-window":{"suggested_key":{"default":"Alt+Shift+M"},"description":"DevTools window to left"}},"content_security_policy":"script-src 'self'; object-src 'self'","web_accessible_resources":["main.html","panel.html","backend.js"],"background":{"scripts":["background.js"],"persistent":false},"permissions":["contextMenus","storage","file:///*","http://*/*","https://*/*"],"browser_action":{"default_icon":{"16":"icons/toolbar-chrome.png","32":"icons/toolbar-chrome@2x.png"},"default_title":"Open"},"content_scripts":[{"matches":["<all_urls>"],"js":["injectGlobalHook.js"],"run_at":"document_start"}],"version":"0.9.3","version_name":"0.9.3"}

@@ -1,1 +0,1 @@

{"manifest_version":2,"name":"MobX Developer Tools","description":"Dev-tools for MobX and React","minimum_chrome_version":"44","applications":{"gecko":{"id":"@mobx","strict_min_version":"54.0"}},"icons":{"16":"icons/Icon-16.png","48":"icons/Icon-48.png","128":"icons/Icon-128.png"},"devtools_page":"panel-loader.html","commands":{"open-devtools-window":{"suggested_key":{"default":"Alt+Shift+M"},"description":"DevTools window to left"}},"content_security_policy":"script-src 'self'; object-src 'self'","web_accessible_resources":["main.html","panel.html","backend.js"],"background":{"scripts":["background.js"],"persistent":false},"permissions":["contextMenus","storage","file:///*","http://*/*","https://*/*"],"browser_action":{"default_icon":{"16":"icons/toolbar-chrome.png","32":"icons/toolbar-chrome@2x.png"},"default_title":"Open"},"content_scripts":[{"matches":["<all_urls>"],"js":["injectGlobalHook.js"],"run_at":"document_start"}],"version":"0.9.2","version_name":"0.9.2"}
{"manifest_version":2,"name":"MobX Developer Tools","description":"Dev-tools for MobX and React","minimum_chrome_version":"44","applications":{"gecko":{"id":"@mobx","strict_min_version":"54.0"}},"icons":{"16":"icons/Icon-16.png","48":"icons/Icon-48.png","128":"icons/Icon-128.png"},"devtools_page":"panel-loader.html","commands":{"open-devtools-window":{"suggested_key":{"default":"Alt+Shift+M"},"description":"DevTools window to left"}},"content_security_policy":"script-src 'self'; object-src 'self'","web_accessible_resources":["main.html","panel.html","backend.js"],"background":{"scripts":["background.js"],"persistent":false},"permissions":["contextMenus","storage","file:///*","http://*/*","https://*/*"],"browser_action":{"default_icon":{"16":"icons/toolbar-chrome.png","32":"icons/toolbar-chrome@2x.png"},"default_title":"Open"},"content_scripts":[{"matches":["<all_urls>"],"js":["injectGlobalHook.js"],"run_at":"document_start"}],"version":"0.9.3","version_name":"0.9.3"}
{
"name": "mobx-devtools",
"version": "0.9.3",
"version": "0.9.4",
"description": "Dev-tools for MobX and React",

@@ -59,2 +59,3 @@ "main": "index.js",

"cross-env": "^5.0.1",
"css-loader": "^0.28.7",
"del": "^3.0.0",

@@ -69,2 +70,3 @@ "es6-object-assign": "^1.1.0",

"file-loader": "^0.11.2",
"hack-font": "^2.0.20",
"html-webpack-plugin": "^2.30.1",

@@ -83,4 +85,8 @@ "jsdom": "^11.0.0",

"react-test-renderer": "16",
"react-tiny-virtual-list": "^2.1.2",
"react-virtualized": "^9.10.1",
"request": "^2.82.0",
"shallowequal": "^1.0.2",
"sinon": "^3.3.0",
"style-loader": "^0.19.0",
"ts-loader": "^2.3.7",

@@ -105,10 +111,3 @@ "typescript": "^2.5.2",

],
"dependencies": {
"css-loader": "^0.28.7",
"hack-font": "^2.0.20",
"react-tiny-virtual-list": "^2.1.2",
"react-virtualized": "^9.10.1",
"shallowequal": "^1.0.2",
"style-loader": "^0.19.0"
}
"dependencies": {}
}

@@ -15,5 +15,11 @@ # mobx-devtools

# Requirements
* [mobx](https://www.npmjs.com/package/mobx) 3.1.15 or higher;
* (optional) [mobx-react](https://www.npmjs.com/package/mobx-react) 4.2.2 or higher;
Should fail gracefully if using unsupported versions.
# Hacking
Check the [HACKING.md](HACKING.md).

@@ -44,4 +44,4 @@

`git tag v${newVersion}`,
`git push ${remote}`,
`git push ${remote} v${newVersion}`,
// `git push ${remote}`,
// `git push ${remote} v${newVersion}`,
'npm publish',

@@ -48,0 +48,0 @@ ].join((' && ')));

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc