mirror of
https://github.com/morten-olsen/react-native-debug-console.git
synced 2026-02-08 00:36:26 +01:00
Compare commits
20 Commits
snyk-fix-6
...
v2.0.0-alp
| Author | SHA1 | Date | |
|---|---|---|---|
| f961e92810 | |||
| ed4d7a3330 | |||
| f04c6d6699 | |||
| c23c255a91 | |||
| f3ff8057d0 | |||
| 58866c56b7 | |||
| c56dd9fb7a | |||
| 0c75f76c54 | |||
| baea9498be | |||
| 4db704759e | |||
| ddfa81a458 | |||
| 65cde5e137 | |||
| adddc7f2a4 | |||
| 41b4d3b115 | |||
| a17faa9482 | |||
| 19e5a7df02 | |||
| ffa64f3ef1 | |||
| 59cb7142e3 | |||
| 8aec17f1e0 | |||
| 169f683deb |
@@ -1,6 +1,4 @@
|
||||
# React Native Debug Console
|
||||
|
||||
[](https://codeclimate.com/github/morten-olsen/react-native-debug-console/maintainability)
|
||||
|
||||
... and yes I am aware that it is a boring name
|
||||
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
|
||||
version: v1.14.1
|
||||
ignore: {}
|
||||
# patches apply the minimum changes required to fix a vulnerability
|
||||
patch:
|
||||
SNYK-JS-LODASH-567746:
|
||||
- styled-components > @babel/traverse > lodash:
|
||||
patched: '2020-04-30T22:47:36.693Z'
|
||||
- styled-components > babel-plugin-styled-components > lodash:
|
||||
patched: '2020-04-30T22:47:36.693Z'
|
||||
- styled-components > @babel/traverse > @babel/generator > lodash:
|
||||
patched: '2020-04-30T22:47:36.693Z'
|
||||
- styled-components > babel-plugin-styled-components > @babel/helper-annotate-as-pure > @babel/types > lodash:
|
||||
patched: '2020-04-30T22:47:36.693Z'
|
||||
- styled-components > @babel/traverse > @babel/helper-split-export-declaration > @babel/types > lodash:
|
||||
patched: '2020-04-30T22:47:36.693Z'
|
||||
- styled-components > @babel/traverse > @babel/helper-function-name > @babel/template > @babel/types > lodash:
|
||||
patched: '2020-04-30T22:47:36.693Z'
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-native-debug-console",
|
||||
"version": "2.0.0-alpha.9",
|
||||
"version": "2.0.0-alpha.7",
|
||||
"main": "lib/index.js",
|
||||
"react-native": "lib/native.js",
|
||||
"repository": {
|
||||
@@ -9,20 +9,16 @@
|
||||
"scripts": {
|
||||
"test": "jest",
|
||||
"bundle": "babel --copy-files --extensions '.ts,.tsx,.js' -d lib src",
|
||||
"prepublish": "npm run snyk-protect && yarn run bundle",
|
||||
"snyk-protect": "snyk protect"
|
||||
"postpublish": "yarn run bundle"
|
||||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"react-native-json-tree": "^1.2.0",
|
||||
"styled-components": "^5.0.0-beta.8",
|
||||
"snyk": "^1.316.1"
|
||||
"styled-components": "^5.0.0-beta.8"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"prop-types": "^15.6.0",
|
||||
"react": "^16.8.3",
|
||||
"react-native": "^0.59.8",
|
||||
"react-native-webview": "^6.9.0"
|
||||
},
|
||||
"snyk": true
|
||||
"react-native": "^0.59.8"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,6 @@ import {
|
||||
View,
|
||||
} from 'react-native';
|
||||
import styled from 'styled-components/native';
|
||||
import { WebView } from 'react-native-webview';
|
||||
import {
|
||||
Emphasis,
|
||||
Fixed,
|
||||
@@ -14,6 +13,9 @@ import Cell from '../../base/Cell';
|
||||
import CellHeader from '../../base/CellHeader';
|
||||
import Tab from '../Tab';
|
||||
|
||||
const WebView = styled.WebView`
|
||||
`;
|
||||
|
||||
const theme = {
|
||||
scheme: 'bright',
|
||||
author: 'chris kempson (http://chriskempson.com)',
|
||||
|
||||
Reference in New Issue
Block a user