Skip to content

Commit 17954df

Browse files
authored
Remove preinstall to see if that is causing issues with prerender-service (#15)
update @fs/eslint-config-frontier-react too, see fs-webdev/eslint-config-frontier-react#38 This is the issue in prerender-service, so seeing if this will fix this. ![image](https://user-images.githubusercontent.com/77301861/226400933-c76bbbd6-5ac7-4ffb-96fc-5c93fb1b1c8f.png)
1 parent 0112c5b commit 17954df

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

demo/test/snapshots/linting-config.test.js.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2072,10 +2072,9 @@ Generated by [AVA](https://ava.li).
20722072
"prettier/prettier": [␊
20732073
"warn",␊
20742074
{␊
2075-
"arrowParens": "always",␊
20762075
"printWidth": 120,␊
2077-
"semi": false,␊
2078-
"singleQuote": true
2076+
"singleQuote": true,␊
2077+
"semi": false
20792078
}␊
20802079
],␊
20812080
"promise/always-return": [␊
-3 Bytes
Binary file not shown.

package.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fs/eslint-config-tree",
3-
"version": "6.0.0-alpha.2",
3+
"version": "6.0.0-alpha.3",
44
"description": "Shared Tree configuration that contains overrides and enhancements on top of the base frontier configuration.",
55
"main": "index.js",
66
"repository": {
@@ -21,10 +21,16 @@
2121
"demo/test/*.js"
2222
]
2323
},
24+
"files": [
25+
"**/*.*",
26+
"!.github/**",
27+
"!demo/**",
28+
"!.*"
29+
],
2430
"dependencies": {
25-
"@babel/eslint-parser": "^7.19.1",
31+
"@babel/eslint-parser": "^7.21.3",
2632
"@fs/eslint-config-frontier-react": "^11.0.0-alpha.6",
27-
"eslint": "^8.35.0",
33+
"eslint": "^8.36.0",
2834
"eslint-plugin-bestpractices": "github:skye2k2/eslint-plugin-bestpractices",
2935
"eslint-plugin-deprecate": "^0.7.0",
3036
"eslint-plugin-html": "^7.1.0",
@@ -48,8 +54,7 @@
4854
"lint:fix": "eslint demo --fix",
4955
"lint:quiet": "eslint demo --quiet",
5056
"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",
51-
"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",
52-
"preinstall": "git config --global url.https://github.com/.insteadOf git://github.com/",
57+
"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",
5358
"postinstall": "npm rebuild husky",
5459
"publish": "npmPublish",
5560
"test": "npm run lint:snapshot; ava",

0 commit comments

Comments
 (0)