react-native-storybook-loader
Advanced tools
Comparing version 1.8.1 to 2.0.0-alpha.1
{ | ||
// Use IntelliSense to learn about possible Node.js debug attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Dist", | ||
"program": "${workspaceRoot}/dist/rnstl-cli.js", | ||
"cwd": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Attach to Process", | ||
"port": 5858 | ||
}, | ||
{ | ||
"name": "Debug Tests", | ||
"type": "node", | ||
"request": "launch", | ||
"program": "${workspaceRoot}/node_modules/jest-cli/bin/jest.js", | ||
"stopOnEntry": false, | ||
"args": ["--runInBand"], | ||
"cwd": "${workspaceRoot}", | ||
"preLaunchTask": null, | ||
"runtimeExecutable": null, | ||
"runtimeArgs": [ | ||
"--nolazy" | ||
], | ||
"env": { | ||
"NODE_ENV": "development" | ||
}, | ||
"externalConsole": false, | ||
"sourceMaps": false, | ||
"outDir": null | ||
} | ||
] | ||
// Use IntelliSense to learn about possible Node.js debug attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug CLI", | ||
"program": "${workspaceFolder}/src/rnstl-cli.ts", | ||
"preLaunchTask": "tsc: build - tsconfig.json", | ||
"outFiles": ["${workspaceFolder}/out/**/*.js"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Dist", | ||
"program": "${workspaceRoot}/dist/rnstl-cli.js", | ||
"cwd": "${workspaceRoot}" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "attach", | ||
"name": "Attach to Process", | ||
"port": 5858 | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Debug Jest Tests", | ||
"cwd": "${workspaceFolder}", | ||
"args": [ | ||
"--inspect-brk", | ||
"${workspaceRoot}/node_modules/.bin/jest", | ||
"--runInBand", | ||
"--config" | ||
], | ||
"windows": { | ||
"args": [ | ||
"--inspect-brk", | ||
"${workspaceRoot}/node_modules/jest/bin/jest.js", | ||
"--runInBand", | ||
"--runTestsByPath", | ||
"${relativeFile}", | ||
"--config" | ||
] | ||
}, | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen" | ||
} | ||
] | ||
} |
{ | ||
"vsicons.presets.angular": false | ||
} |
{ | ||
"name": "react-native-storybook-loader", | ||
"version": "1.8.1", | ||
"version": "2.0.0-alpha.1", | ||
"repository": "https://github.com/elderfo/react-native-storybook-loader.git", | ||
@@ -9,30 +9,41 @@ "bugs": "https://github.com/elderfo/react-native-storybook-loader/issues", | ||
"bin": { | ||
"rnstl": "./src/rnstl-cli.js" | ||
"rnstl": "./out/rnstl-cli.js" | ||
}, | ||
"devDependencies": { | ||
"codecov": "^3.5.0", | ||
"@babel/preset-env": "^7.10.4", | ||
"@babel/preset-typescript": "^7.10.4", | ||
"@types/faker": "^4.1.12", | ||
"@types/find-up": "^4.0.0", | ||
"@types/glob": "^7.1.3", | ||
"@types/jest": "^26.0.4", | ||
"@types/mock-fs": "^4.10.0", | ||
"@types/prettier": "^2.0.2", | ||
"@types/yargs": "^15.0.5", | ||
"codecov": "^3.6.5", | ||
"faker": "^4.1.0", | ||
"husky": "^3.0.5", | ||
"jest": "^24.9.0", | ||
"lint-staged": "^9.2.5", | ||
"husky": "^4.2.5", | ||
"jest": "^26.1.0", | ||
"lint-staged": "^10.2.11", | ||
"mock-fs": "^4.4.1", | ||
"npm-run-all": "^4.1.2", | ||
"prettier": "^1.5.3", | ||
"semantic-release": "^15.13.24", | ||
"uuid": "^3.0.1" | ||
"prettier": "^2.0.5", | ||
"ts-node": "^8.10.2", | ||
"typescript": "^3.9.6", | ||
"uuid": "^8.2.0" | ||
}, | ||
"dependencies": { | ||
"colors": "^1.1.2", | ||
"findup": "^0.1.5", | ||
"find-up": "^4.1.0", | ||
"glob": "^7.1.1", | ||
"yargs": "^14.0.0" | ||
"yargs": "^15.4.1" | ||
}, | ||
"scripts": { | ||
"prepublish": "tsc", | ||
"build": "tsc", | ||
"prepare": "tsc", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"test:ci": "jest --coverage && codecov", | ||
"start": "node src/rnstl-cli.js", | ||
"start:help": "node src/rnstl-cli.js --help", | ||
"semantic-release": "semantic-release", | ||
"precommit": "lint-staged", | ||
"test:ci": "jest --coverage", | ||
"start": "ts-node src/rnstl-cli.ts", | ||
"start:help": "ts-node src/rnstl-cli.ts --help", | ||
"ci": "npm-run-all test:ci start" | ||
@@ -47,22 +58,12 @@ }, | ||
}, | ||
"jest": { | ||
"collectCoverageFrom": [ | ||
"**/*.{js,jsx}", | ||
"!**/node_modules/**", | ||
"!**/vendor/**", | ||
"!**/output/**", | ||
"!**/coverage/**" | ||
], | ||
"coverageDirectory": "./coverage/" | ||
}, | ||
"config": { | ||
"react-native-storybook-loader": { | ||
"searchDir": [ | ||
"./src/paths", | ||
"./src/writer" | ||
"./src", | ||
"./src/logger" | ||
], | ||
"pattern": "**/*.js", | ||
"outputFile": "./output/storyLoader.js" | ||
"pattern": "**/*.ts", | ||
"outputFile": "./storybook/storyLoader.js" | ||
} | ||
} | ||
} |
@@ -0,0 +0,0 @@ # react-native-storybook-loader |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
1
39214
20
878
1
2
1
+ Addedfind-up@^4.1.0
+ Addedansi-regex@5.0.1(transitive)
+ Addedansi-styles@4.3.0(transitive)
+ Addedcliui@6.0.0(transitive)
+ Addedcolor-convert@2.0.1(transitive)
+ Addedcolor-name@1.1.4(transitive)
+ Addedemoji-regex@8.0.0(transitive)
+ Addedfind-up@4.1.0(transitive)
+ Addedis-fullwidth-code-point@3.0.0(transitive)
+ Addedlocate-path@5.0.0(transitive)
+ Addedp-locate@4.1.0(transitive)
+ Addedpath-exists@4.0.0(transitive)
+ Addedstring-width@4.2.3(transitive)
+ Addedstrip-ansi@6.0.1(transitive)
+ Addedwrap-ansi@6.2.0(transitive)
+ Addedyargs@15.4.1(transitive)
+ Addedyargs-parser@18.1.3(transitive)
- Removedfindup@^0.1.5
- Removedansi-regex@4.1.1(transitive)
- Removedansi-styles@3.2.1(transitive)
- Removedcliui@5.0.0(transitive)
- Removedcolor-convert@1.9.3(transitive)
- Removedcolor-name@1.1.3(transitive)
- Removedcolors@0.6.2(transitive)
- Removedcommander@2.1.0(transitive)
- Removedemoji-regex@7.0.3(transitive)
- Removedfind-up@3.0.0(transitive)
- Removedfindup@0.1.5(transitive)
- Removedis-fullwidth-code-point@2.0.0(transitive)
- Removedlocate-path@3.0.0(transitive)
- Removedp-locate@3.0.0(transitive)
- Removedpath-exists@3.0.0(transitive)
- Removedstring-width@3.1.0(transitive)
- Removedstrip-ansi@5.2.0(transitive)
- Removedwrap-ansi@5.1.0(transitive)
- Removedyargs@14.2.3(transitive)
- Removedyargs-parser@15.0.3(transitive)
Updatedyargs@^15.4.1