mobx-devtools
Advanced tools
Comparing version 0.9.3 to 0.9.4
# Changelog | ||
## [Unreleased] | ||
## [0.9.4] | ||
### Fixed | ||
Fail gracefully if using unsupported mobx versions. | ||
## [0.9.3] | ||
@@ -4,0 +10,0 @@ ### Fixed |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2
25
6488955
52
92
64969
17
+ Addedjs-tokens@4.0.0(transitive)
- Removedcss-loader@^0.28.7
- Removedhack-font@^2.0.20
- Removedreact-tiny-virtual-list@^2.1.2
- Removedreact-virtualized@^9.10.1
- Removedshallowequal@^1.0.2
- Removedstyle-loader@^0.19.0
- Removed@babel/runtime@7.26.0(transitive)
- Removedajv@5.5.2(transitive)
- Removedalphanum-sort@1.0.2(transitive)
- Removedansi-regex@2.1.1(transitive)
- Removedansi-styles@2.2.13.2.1(transitive)
- Removedargparse@1.0.10(transitive)
- Removedautoprefixer@6.7.7(transitive)
- Removedbabel-code-frame@6.26.0(transitive)
- Removedbalanced-match@0.4.21.0.2(transitive)
- Removedbig.js@5.2.2(transitive)
- Removedbrowserslist@1.7.7(transitive)
- Removedcaniuse-api@1.6.1(transitive)
- Removedcaniuse-db@1.0.30001684(transitive)
- Removedchalk@1.1.32.4.2(transitive)
- Removedclap@1.2.3(transitive)
- Removedclone@1.0.4(transitive)
- Removedclsx@1.2.1(transitive)
- Removedco@4.6.0(transitive)
- Removedcoa@1.0.4(transitive)
- Removedcolor@0.11.4(transitive)
- Removedcolor-convert@1.9.3(transitive)
- Removedcolor-name@1.1.3(transitive)
- Removedcolor-string@0.3.0(transitive)
- Removedcolormin@1.1.2(transitive)
- Removedcolors@1.1.2(transitive)
- Removedcss-color-names@0.0.4(transitive)
- Removedcss-loader@0.28.11(transitive)
- Removedcss-selector-tokenizer@0.7.3(transitive)
- Removedcssesc@3.0.0(transitive)
- Removedcssnano@3.10.0(transitive)
- Removedcsso@2.3.2(transitive)
- Removedcsstype@3.1.3(transitive)
- Removeddecamelize@1.2.0(transitive)
- Removeddefined@1.0.1(transitive)
- Removeddom-helpers@5.2.1(transitive)
- Removedelectron-to-chromium@1.5.65(transitive)
- Removedemojis-list@3.0.0(transitive)
- Removedescape-string-regexp@1.0.5(transitive)
- Removedesprima@2.7.3(transitive)
- Removedesutils@2.0.3(transitive)
- Removedfast-deep-equal@1.1.0(transitive)
- Removedfast-json-stable-stringify@2.1.0(transitive)
- Removedfastparse@1.1.2(transitive)
- Removedflatten@1.0.3(transitive)
- Removedhack-font@2.0.20(transitive)
- Removedhas@1.0.4(transitive)
- Removedhas-ansi@2.0.0(transitive)
- Removedhas-flag@1.0.03.0.0(transitive)
- Removedhtml-comment-regex@1.1.2(transitive)
- Removedicss-replace-symbols@1.1.0(transitive)
- Removedicss-utils@2.1.0(transitive)
- Removedindexes-of@1.0.1(transitive)
- Removedis-absolute-url@2.1.0(transitive)
- Removedis-plain-obj@1.1.0(transitive)
- Removedis-svg@2.1.0(transitive)
- Removedjs-base64@2.6.4(transitive)
- Removedjs-tokens@3.0.2(transitive)
- Removedjs-yaml@3.7.0(transitive)
- Removedjson-schema-traverse@0.3.1(transitive)
- Removedjson5@1.0.2(transitive)
- Removedloader-utils@1.4.2(transitive)
- Removedlodash.camelcase@4.3.0(transitive)
- Removedlodash.memoize@4.1.2(transitive)
- Removedlodash.uniq@4.5.0(transitive)
- Removedmath-expression-evaluator@1.4.0(transitive)
- Removedminimist@1.2.8(transitive)
- Removedmkdirp@0.5.6(transitive)
- Removednormalize-range@0.1.2(transitive)
- Removednormalize-url@1.9.1(transitive)
- Removednum2fraction@1.2.2(transitive)
- Removedpostcss@5.2.186.0.23(transitive)
- Removedpostcss-calc@5.3.1(transitive)
- Removedpostcss-colormin@2.2.2(transitive)
- Removedpostcss-convert-values@2.6.1(transitive)
- Removedpostcss-discard-comments@2.0.4(transitive)
- Removedpostcss-discard-duplicates@2.1.0(transitive)
- Removedpostcss-discard-empty@2.1.0(transitive)
- Removedpostcss-discard-overridden@0.1.1(transitive)
- Removedpostcss-discard-unused@2.2.3(transitive)
- Removedpostcss-filter-plugins@2.0.3(transitive)
- Removedpostcss-merge-idents@2.1.7(transitive)
- Removedpostcss-merge-longhand@2.0.2(transitive)
- Removedpostcss-merge-rules@2.1.2(transitive)
- Removedpostcss-message-helpers@2.0.0(transitive)
- Removedpostcss-minify-font-values@1.0.5(transitive)
- Removedpostcss-minify-gradients@1.0.5(transitive)
- Removedpostcss-minify-params@1.2.2(transitive)
- Removedpostcss-minify-selectors@2.1.1(transitive)
- Removedpostcss-modules-extract-imports@1.2.1(transitive)
- Removedpostcss-modules-local-by-default@1.2.0(transitive)
- Removedpostcss-modules-scope@1.1.0(transitive)
- Removedpostcss-modules-values@1.3.0(transitive)
- Removedpostcss-normalize-charset@1.1.1(transitive)
- Removedpostcss-normalize-url@3.0.8(transitive)
- Removedpostcss-ordered-values@2.2.3(transitive)
- Removedpostcss-reduce-idents@2.4.0(transitive)
- Removedpostcss-reduce-initial@1.0.1(transitive)
- Removedpostcss-reduce-transforms@1.0.4(transitive)
- Removedpostcss-selector-parser@2.2.3(transitive)
- Removedpostcss-svgo@2.1.6(transitive)
- Removedpostcss-unique-selectors@2.0.2(transitive)
- Removedpostcss-value-parser@3.3.1(transitive)
- Removedpostcss-zindex@2.2.0(transitive)
- Removedprepend-http@1.0.4(transitive)
- Removedq@1.5.1(transitive)
- Removedquery-string@4.3.4(transitive)
- Removedreact@18.3.1(transitive)
- Removedreact-dom@18.3.1(transitive)
- Removedreact-lifecycles-compat@3.0.4(transitive)
- Removedreact-tiny-virtual-list@2.2.0(transitive)
- Removedreact-virtualized@9.22.5(transitive)
- Removedreduce-css-calc@1.3.0(transitive)
- Removedreduce-function-call@1.0.3(transitive)
- Removedregenerator-runtime@0.14.1(transitive)
- Removedsax@1.2.4(transitive)
- Removedscheduler@0.23.2(transitive)
- Removedschema-utils@0.3.0(transitive)
- Removedshallowequal@1.1.0(transitive)
- Removedsort-keys@1.1.2(transitive)
- Removedsource-list-map@2.0.1(transitive)
- Removedsource-map@0.5.70.6.1(transitive)
- Removedsprintf-js@1.0.3(transitive)
- Removedstrict-uri-encode@1.1.0(transitive)
- Removedstrip-ansi@3.0.1(transitive)
- Removedstyle-loader@0.19.1(transitive)
- Removedsupports-color@2.0.03.2.35.5.0(transitive)
- Removedsvgo@0.7.2(transitive)
- Removeduniq@1.0.1(transitive)
- Removeduniqs@2.0.0(transitive)
- Removedvendors@1.0.4(transitive)
- Removedwhet.extend@0.9.9(transitive)