Build/dev dependencies catchup (#107)
* build: netlify-cli update * build: parcel update * build: typescript update * ci: fix preview deploy URL display
This commit is contained in:
parent
deea1812f0
commit
a22b00eddb
4 changed files with 4452 additions and 6153 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -109,8 +109,8 @@ jobs:
|
|||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_TOKEN }}
|
||||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
||||
run: |
|
||||
yarn netlify deploy --dir=dist > output.log
|
||||
echo "::set-output name=draft-url::$(grep 'Website Draft URL' output.log)"
|
||||
yarn netlify deploy --dir=dist --json | jq .deploy_url > output.log
|
||||
echo "::set-output name=draft-url::$(cat output.log)"
|
||||
- name: Report
|
||||
uses: actions/github-script@v6
|
||||
env:
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
nodeLinker: node-modules
|
||||
yarnPath: .yarn/releases/yarn-3.3.1.cjs
|
||||
|
|
10
package.json
10
package.json
|
@ -22,6 +22,7 @@
|
|||
"@tophat/eslint-import-resolver-require": "0.1.3",
|
||||
"@typescript-eslint/eslint-plugin": "5.42.0",
|
||||
"@typescript-eslint/parser": "5.42.0",
|
||||
"esbuild": "^0.17.3",
|
||||
"eslint": "8.26.0",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-import-resolver-node": "0.3.6",
|
||||
|
@ -33,10 +34,10 @@
|
|||
"eslint-plugin-react": "7.31.10",
|
||||
"eslint-plugin-react-hooks": "4.6.0",
|
||||
"jest": "29.2.2",
|
||||
"netlify-cli": "5.2.3",
|
||||
"parcel": "2.0.0",
|
||||
"netlify-cli": "^12.9.1",
|
||||
"parcel": "^2.8.3",
|
||||
"prettier": "2.7.1",
|
||||
"typescript": "4.8.4"
|
||||
"typescript": "^4.9.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@material-ui/core": "4.12.4",
|
||||
|
@ -50,6 +51,7 @@
|
|||
},
|
||||
"alias": {
|
||||
"react": "preact/compat",
|
||||
"react-dom": "preact/compat"
|
||||
"react-dom": "preact/compat",
|
||||
"preact/jsx-dev-runtime": "preact/jsx-runtime"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue