Skip to content

Commit

Permalink
update react-helloworld-tryout,
Browse files Browse the repository at this point in the history
  • Loading branch information
louiscklaw committed Jun 17, 2022
1 parent aa4b3c0 commit 6b49563
Show file tree
Hide file tree
Showing 788 changed files with 320,166 additions and 182 deletions.
1 change: 1 addition & 0 deletions React-QR-Generator-Scanner
Submodule React-QR-Generator-Scanner added at fb885a
8 changes: 8 additions & 0 deletions _design_system/mui5/new_helloworld.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
remove-item -R -Force workbox-tryout

pushd helloworld-tryout
remove-item -R -Force node_modules
popd

Robocopy helloworld-tryout workbox-tryout /E

14 changes: 14 additions & 0 deletions _design_system/mui5/pwa-tryout/src/fonts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { useEffect } from 'react'
import WebFont from 'webfontloader'

export default function Fonts() {
useEffect(() => {
WebFont.load({
google: {
families: ['Droid Sans', 'Chilanka'],
},
})
}, [])

return <></>
}
25 changes: 25 additions & 0 deletions _design_system/mui5/pwa-tryout/src/workbox/image-cache.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { CacheableResponsePlugin } from 'workbox-cacheable-response'
import { ExpirationPlugin } from 'workbox-expiration'
import { registerRoute } from 'workbox-routing'
import { CacheFirst } from 'workbox-strategies'

const cacheName = 'images'
const matchCallback = ({ request }) => request.destination === 'image'
const maxAgeSeconds = 30 * 24 * 60 * 60
const maxEntries = 60

registerRoute(
matchCallback,
new CacheFirst({
cacheName,
plugins: [
new CacheableResponsePlugin({
statuses: [0, 200],
}),
new ExpirationPlugin({
maxEntries,
maxAgeSeconds,
}),
],
}),
)
3 changes: 2 additions & 1 deletion react-context-mockup-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-context-provider-pattern-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-cookies-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-countdown-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-countup-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-crisp-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-css-animation-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-css-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-currency-format-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-custom-hook-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-custom-react-hooks-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-d3-graphviz-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-d3-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-data-grid-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-daterange-picker-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-day-picker-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-detect-offline-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-device-detect-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-disqus-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-div-100vh-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-doc-viewer-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-dotenv-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-drawer-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-dropzone-component-helloworld-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-dropzone-helloworld-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
3 changes: 2 additions & 1 deletion react-dropzone-uploader-helloworld-tryout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"prettier_file": "prettier --write \"./src/**/*.{js,jsx}\"",
"clear-all": "rm -rf build node_modules",
"re-build": "rm -rf build node_modules && yarn install && yarn build",
"gitUpdate": "yarn prettier_file && git pull && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"gitSync": "git fetch --all && git pull",
"gitUpdate": "yarn gitSync && git add . && git commit -m\"update react-helloworld-tryout,\" && git push",
"dev": "yarn --dev && npx kill-port 3000 && set HTTPS=true&&yarn start",
"http": "serve -s build",
"lint": "eslint -c ./.eslintrc.js src --ignore-pattern src/tests --ignore-pattern *.test.js --max-warnings 5 --fix",
Expand Down
Loading

0 comments on commit 6b49563

Please sign in to comment.