Skip to content

Remove preinstall to see if that is causing issues with prerender-service #15

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

Merged
merged 7 commits into from
Mar 20, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions demo/test/snapshots/linting-config.test.js.md
Original file line number Diff line number Diff line change
Expand Up @@ -2072,10 +2072,9 @@ Generated by [AVA](https://ava.li).
"prettier/prettier": [␊
"warn",␊
{␊
"arrowParens": "always",␊
"printWidth": 120,␊
"semi": false,␊
"singleQuote": true
"singleQuote": true,␊
"semi": false
}␊
],␊
"promise/always-return": [␊
Expand Down
Binary file modified demo/test/snapshots/linting-config.test.js.snap
Binary file not shown.
15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fs/eslint-config-tree",
"version": "6.0.0-alpha.2",
"version": "6.0.0-alpha.3",
"description": "Shared Tree configuration that contains overrides and enhancements on top of the base frontier configuration.",
"main": "index.js",
"repository": {
Expand All @@ -21,10 +21,16 @@
"demo/test/*.js"
]
},
"files": [
"**/*.*",
"!.github/**",
"!demo/**",
"!.*"
],
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-parser": "^7.21.3",
"@fs/eslint-config-frontier-react": "^11.0.0-alpha.6",
"eslint": "^8.35.0",
"eslint": "^8.36.0",
"eslint-plugin-bestpractices": "github:skye2k2/eslint-plugin-bestpractices",
"eslint-plugin-deprecate": "^0.7.0",
"eslint-plugin-html": "^7.1.0",
Expand All @@ -48,8 +54,7 @@
"lint:fix": "eslint demo --fix",
"lint:quiet": "eslint demo --quiet",
"lint:report": "eslint demo '**/*.html' --format html --output-file ./reports/linting/linting_report.html & eslint demo --format json --output-file ./reports/linting/linting_report.json",
"lint:snapshot": "eslint demo --no-color --output-file ./demo/test/snapshots/local-linting-output.txt; eslint --print-config file.js > ./demo/test/snapshots/local-linting-final-config.json; npm run test:format",
"preinstall": "git config --global url.https://github.com/.insteadOf git://github.com/",
"lint:snapshot": "eslint --print-config file.js > ./demo/test/snapshots/local-linting-final-config.json; eslint demo --no-color --output-file ./demo/test/snapshots/local-linting-output.txt; npm run test:format",
"postinstall": "npm rebuild husky",
"publish": "npmPublish",
"test": "npm run lint:snapshot; ava",
Expand Down