Vite!
This commit is contained in:
parent
39ba6d5a48
commit
31ede348d7
17 changed files with 1028 additions and 21006 deletions
|
@ -3,7 +3,7 @@
|
|||
"isRoot": true,
|
||||
"tools": {
|
||||
"fable": {
|
||||
"version": "3.6.2",
|
||||
"version": "3.7.9",
|
||||
"commands": [
|
||||
"fable"
|
||||
]
|
||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
|||
public/bundle.js*
|
||||
public/
|
||||
|
||||
# Node
|
||||
node_modules/
|
||||
|
|
13
.idea/.idea.App/.idea/.gitignore
generated
vendored
Normal file
13
.idea/.idea.App/.idea/.gitignore
generated
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Rider ignored files
|
||||
/projectSettingsUpdater.xml
|
||||
/modules.xml
|
||||
/contentModel.xml
|
||||
/.idea.App.iml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
4
.idea/.idea.App/.idea/encodings.xml
generated
Normal file
4
.idea/.idea.App/.idea/encodings.xml
generated
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||
</project>
|
8
.idea/.idea.App/.idea/indexLayout.xml
generated
Normal file
8
.idea/.idea.App/.idea/indexLayout.xml
generated
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
8
.idea/.idea.App/.idea/misc.xml
generated
Normal file
8
.idea/.idea.App/.idea/misc.xml
generated
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="SwUserDefinedSpecifications">
|
||||
<option name="specTypeByUrl">
|
||||
<map />
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
6
.idea/.idea.App/.idea/vcs.xml
generated
Normal file
6
.idea/.idea.App/.idea/vcs.xml
generated
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
21234
package-lock.json
generated
21234
package-lock.json
generated
File diff suppressed because it is too large
Load diff
37
package.json
37
package.json
|
@ -2,13 +2,11 @@
|
|||
"private": true,
|
||||
"scripts": {
|
||||
"prestart": "dotnet tool restore",
|
||||
"start": "dotnet fable watch ./src -s --run webpack-dev-server",
|
||||
"start": "dotnet fable watch ./src --sourceMaps --run vite",
|
||||
"prebuild": "dotnet tool restore",
|
||||
"build": "dotnet fable ./src && webpack",
|
||||
"test:live": "dotnet fable watch tests --run webpack-dev-server --config ./webpack.tests.js",
|
||||
"build:test": "dotnet fable tests && webpack --config webpack.tests.js",
|
||||
"pretest": "dotnet tool restore",
|
||||
"test": "dotnet fable tests --outDir dist/tests && mocha dist/tests -r esm"
|
||||
"build": "dotnet fable ./src --sourceMaps --run vite build",
|
||||
"serve": "vite serve",
|
||||
"preview": "dotnet fable ./src --sourceMaps --run vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"date-fns": "^2.16.1",
|
||||
|
@ -16,31 +14,6 @@
|
|||
"react-dom": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@babel/preset-react": "^7.12.10",
|
||||
"@babel/runtime": "^7.12.5",
|
||||
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
|
||||
"babel-loader": "^8.2.2",
|
||||
"copy-webpack-plugin": "^6.4.1",
|
||||
"core-js": "^3.8.2",
|
||||
"css-loader": "^5.0.1",
|
||||
"dotenv-webpack": "^6.0.0",
|
||||
"esm": "^3.2.25",
|
||||
"file-loader": "^6.2.0",
|
||||
"graceful-fs": "^4.2.4",
|
||||
"html-webpack-plugin": "^4.5.1",
|
||||
"mini-css-extract-plugin": "^1.3.4",
|
||||
"mocha": "^8.2.1",
|
||||
"react-refresh": "^0.9.0",
|
||||
"sass": "^1.32.4",
|
||||
"sass-loader": "^10.1.1",
|
||||
"source-map-loader": "^2.0.1",
|
||||
"style-loader": "^2.0.0",
|
||||
"tailwindcss": "^3.0.7",
|
||||
"terser": "^4.8.0",
|
||||
"webpack": "^4.44.2",
|
||||
"webpack-cli": "^3.3.12",
|
||||
"webpack-dev-server": "^3.11.2"
|
||||
"vite": "^2.9.6"
|
||||
}
|
||||
}
|
||||
|
|
371
pnpm-lock.yaml
generated
Normal file
371
pnpm-lock.yaml
generated
Normal file
|
@ -0,0 +1,371 @@
|
|||
lockfileVersion: 5.3
|
||||
|
||||
specifiers:
|
||||
date-fns: ^2.16.1
|
||||
react: ^17.0.1
|
||||
react-dom: ^17.0.1
|
||||
vite: ^2.9.6
|
||||
|
||||
dependencies:
|
||||
date-fns: 2.28.0
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
|
||||
devDependencies:
|
||||
vite: 2.9.6
|
||||
|
||||
packages:
|
||||
|
||||
/date-fns/2.28.0:
|
||||
resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==}
|
||||
engines: {node: '>=0.11'}
|
||||
dev: false
|
||||
|
||||
/esbuild-android-64/0.14.38:
|
||||
resolution: {integrity: sha512-aRFxR3scRKkbmNuGAK+Gee3+yFxkTJO/cx83Dkyzo4CnQl/2zVSurtG6+G86EQIZ+w+VYngVyK7P3HyTBKu3nw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-android-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-L2NgQRWuHFI89IIZIlpAcINy9FvBk6xFVZ7xGdOwIm8VyhX1vNCEqUJO3DPSSy945Gzdg98cxtNt8Grv1CsyhA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-darwin-64/0.14.38:
|
||||
resolution: {integrity: sha512-5JJvgXkX87Pd1Og0u/NJuO7TSqAikAcQQ74gyJ87bqWRVeouky84ICoV4sN6VV53aTW+NE87qLdGY4QA2S7KNA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-darwin-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-eqF+OejMI3mC5Dlo9Kdq/Ilbki9sQBw3QlHW3wjLmsLh+quNfHmGMp3Ly1eWm981iGBMdbtSS9+LRvR2T8B3eQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-freebsd-64/0.14.38:
|
||||
resolution: {integrity: sha512-epnPbhZUt93xV5cgeY36ZxPXDsQeO55DppzsIgWM8vgiG/Rz+qYDLmh5ts3e+Ln1wA9dQ+nZmVHw+RjaW3I5Ig==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-freebsd-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-/9icXUYJWherhk+y5fjPI5yNUdFPtXHQlwP7/K/zg8t8lQdHVj20SqU9/udQmeUo5pDFHMYzcEFfJqgOVeKNNQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-32/0.14.38:
|
||||
resolution: {integrity: sha512-QfgfeNHRFvr2XeHFzP8kOZVnal3QvST3A0cgq32ZrHjSMFTdgXhMhmWdKzRXP/PKcfv3e2OW9tT9PpcjNvaq6g==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ia32]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-64/0.14.38:
|
||||
resolution: {integrity: sha512-uuZHNmqcs+Bj1qiW9k/HZU3FtIHmYiuxZ/6Aa+/KHb/pFKr7R3aVqvxlAudYI9Fw3St0VCPfv7QBpUITSmBR1Q==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-arm/0.14.38:
|
||||
resolution: {integrity: sha512-FiFvQe8J3VKTDXG01JbvoVRXQ0x6UZwyrU4IaLBZeq39Bsbatd94Fuc3F1RGqPF5RbIWW7RvkVQjn79ejzysnA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-HlMGZTEsBrXrivr64eZ/EO0NQM8H8DuSENRok9d+Jtvq8hOLzrxfsAT9U94K3KOGk2XgCmkaI2KD8hX7F97lvA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-mips64le/0.14.38:
|
||||
resolution: {integrity: sha512-qd1dLf2v7QBiI5wwfil9j0HG/5YMFBAmMVmdeokbNAMbcg49p25t6IlJFXAeLzogv1AvgaXRXvgFNhScYEUXGQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [mips64el]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-ppc64le/0.14.38:
|
||||
resolution: {integrity: sha512-mnbEm7o69gTl60jSuK+nn+pRsRHGtDPfzhrqEUXyCl7CTOCLtWN2bhK8bgsdp6J/2NyS/wHBjs1x8aBWwP2X9Q==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ppc64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-riscv64/0.14.38:
|
||||
resolution: {integrity: sha512-+p6YKYbuV72uikChRk14FSyNJZ4WfYkffj6Af0/Tw63/6TJX6TnIKE+6D3xtEc7DeDth1fjUOEqm+ApKFXbbVQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [riscv64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-linux-s390x/0.14.38:
|
||||
resolution: {integrity: sha512-0zUsiDkGJiMHxBQ7JDU8jbaanUY975CdOW1YDrurjrM0vWHfjv9tLQsW9GSyEb/heSK1L5gaweRjzfUVBFoybQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [s390x]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-netbsd-64/0.14.38:
|
||||
resolution: {integrity: sha512-cljBAApVwkpnJZfnRVThpRBGzCi+a+V9Ofb1fVkKhtrPLDYlHLrSYGtmnoTVWDQdU516qYI8+wOgcGZ4XIZh0Q==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [netbsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-openbsd-64/0.14.38:
|
||||
resolution: {integrity: sha512-CDswYr2PWPGEPpLDUO50mL3WO/07EMjnZDNKpmaxUPsrW+kVM3LoAqr/CE8UbzugpEiflYqJsGPLirThRB18IQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [openbsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-sunos-64/0.14.38:
|
||||
resolution: {integrity: sha512-2mfIoYW58gKcC3bck0j7lD3RZkqYA7MmujFYmSn9l6TiIcAMpuEvqksO+ntBgbLep/eyjpgdplF7b+4T9VJGOA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [sunos]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-32/0.14.38:
|
||||
resolution: {integrity: sha512-L2BmEeFZATAvU+FJzJiRLFUP+d9RHN+QXpgaOrs2klshoAm1AE6Us4X6fS9k33Uy5SzScn2TpcgecbqJza1Hjw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-64/0.14.38:
|
||||
resolution: {integrity: sha512-Khy4wVmebnzue8aeSXLC+6clo/hRYeNIm0DyikoEqX+3w3rcvrhzpoix0S+MF9vzh6JFskkIGD7Zx47ODJNyCw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild-windows-arm64/0.14.38:
|
||||
resolution: {integrity: sha512-k3FGCNmHBkqdJXuJszdWciAH77PukEyDsdIryEHn9cKLQFxzhT39dSumeTuggaQcXY57UlmLGIkklWZo2qzHpw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/esbuild/0.14.38:
|
||||
resolution: {integrity: sha512-12fzJ0fsm7gVZX1YQ1InkOE5f9Tl7cgf6JPYXRJtPIoE0zkWAbHdPHVPPaLi9tYAcEBqheGzqLn/3RdTOyBfcA==}
|
||||
engines: {node: '>=12'}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
optionalDependencies:
|
||||
esbuild-android-64: 0.14.38
|
||||
esbuild-android-arm64: 0.14.38
|
||||
esbuild-darwin-64: 0.14.38
|
||||
esbuild-darwin-arm64: 0.14.38
|
||||
esbuild-freebsd-64: 0.14.38
|
||||
esbuild-freebsd-arm64: 0.14.38
|
||||
esbuild-linux-32: 0.14.38
|
||||
esbuild-linux-64: 0.14.38
|
||||
esbuild-linux-arm: 0.14.38
|
||||
esbuild-linux-arm64: 0.14.38
|
||||
esbuild-linux-mips64le: 0.14.38
|
||||
esbuild-linux-ppc64le: 0.14.38
|
||||
esbuild-linux-riscv64: 0.14.38
|
||||
esbuild-linux-s390x: 0.14.38
|
||||
esbuild-netbsd-64: 0.14.38
|
||||
esbuild-openbsd-64: 0.14.38
|
||||
esbuild-sunos-64: 0.14.38
|
||||
esbuild-windows-32: 0.14.38
|
||||
esbuild-windows-64: 0.14.38
|
||||
esbuild-windows-arm64: 0.14.38
|
||||
dev: true
|
||||
|
||||
/fsevents/2.3.2:
|
||||
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
||||
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/function-bind/1.1.1:
|
||||
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
|
||||
dev: true
|
||||
|
||||
/has/1.0.3:
|
||||
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
|
||||
engines: {node: '>= 0.4.0'}
|
||||
dependencies:
|
||||
function-bind: 1.1.1
|
||||
dev: true
|
||||
|
||||
/is-core-module/2.9.0:
|
||||
resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==}
|
||||
dependencies:
|
||||
has: 1.0.3
|
||||
dev: true
|
||||
|
||||
/js-tokens/4.0.0:
|
||||
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
||||
dev: false
|
||||
|
||||
/loose-envify/1.4.0:
|
||||
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
js-tokens: 4.0.0
|
||||
dev: false
|
||||
|
||||
/nanoid/3.3.3:
|
||||
resolution: {integrity: sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==}
|
||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/object-assign/4.1.1:
|
||||
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/path-parse/1.0.7:
|
||||
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
||||
dev: true
|
||||
|
||||
/picocolors/1.0.0:
|
||||
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
||||
dev: true
|
||||
|
||||
/postcss/8.4.12:
|
||||
resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==}
|
||||
engines: {node: ^10 || ^12 || >=14}
|
||||
dependencies:
|
||||
nanoid: 3.3.3
|
||||
picocolors: 1.0.0
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/react-dom/17.0.2_react@17.0.2:
|
||||
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
|
||||
peerDependencies:
|
||||
react: 17.0.2
|
||||
dependencies:
|
||||
loose-envify: 1.4.0
|
||||
object-assign: 4.1.1
|
||||
react: 17.0.2
|
||||
scheduler: 0.20.2
|
||||
dev: false
|
||||
|
||||
/react/17.0.2:
|
||||
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dependencies:
|
||||
loose-envify: 1.4.0
|
||||
object-assign: 4.1.1
|
||||
dev: false
|
||||
|
||||
/resolve/1.22.0:
|
||||
resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
is-core-module: 2.9.0
|
||||
path-parse: 1.0.7
|
||||
supports-preserve-symlinks-flag: 1.0.0
|
||||
dev: true
|
||||
|
||||
/rollup/2.70.2:
|
||||
resolution: {integrity: sha512-EitogNZnfku65I1DD5Mxe8JYRUCy0hkK5X84IlDtUs+O6JRMpRciXTzyCUuX11b5L5pvjH+OmFXiQ3XjabcXgg==}
|
||||
engines: {node: '>=10.0.0'}
|
||||
hasBin: true
|
||||
optionalDependencies:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
||||
|
||||
/scheduler/0.20.2:
|
||||
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
|
||||
dependencies:
|
||||
loose-envify: 1.4.0
|
||||
object-assign: 4.1.1
|
||||
dev: false
|
||||
|
||||
/source-map-js/1.0.2:
|
||||
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/supports-preserve-symlinks-flag/1.0.0:
|
||||
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dev: true
|
||||
|
||||
/vite/2.9.6:
|
||||
resolution: {integrity: sha512-3IffdrByHW95Yjv0a13TQOQfJs7L5dVlSPuTt432XLbRMriWbThqJN2k/IS6kXn5WY4xBLhK9XoaWay1B8VzUw==}
|
||||
engines: {node: '>=12.2.0'}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
less: '*'
|
||||
sass: '*'
|
||||
stylus: '*'
|
||||
peerDependenciesMeta:
|
||||
less:
|
||||
optional: true
|
||||
sass:
|
||||
optional: true
|
||||
stylus:
|
||||
optional: true
|
||||
dependencies:
|
||||
esbuild: 0.14.38
|
||||
postcss: 8.4.12
|
||||
resolve: 1.22.0
|
||||
rollup: 2.70.2
|
||||
optionalDependencies:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
|
@ -13,10 +13,10 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Fable.Fetch" Version="2.4.0" />
|
||||
<PackageReference Include="Feliz" Version="1.57.0" />
|
||||
<PackageReference Include="Feliz" Version="1.62.0" />
|
||||
<PackageReference Include="Feliz.Router" Version="3.8.0" />
|
||||
<PackageReference Include="Fable.DateFunctions" Version="3.8.1" />
|
||||
<PackageReference Include="Thoth.Json" Version="6.0.0" />
|
||||
<PackageReference Include="Fable.DateFunctions" Version="3.9.0" />
|
||||
<PackageReference Include="Thoth.Json" Version="7.0.0" />
|
||||
<PackageReference Include="Zanaptak.TypedCssClasses" Version="1.0.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -68,7 +68,7 @@ let UserEntry (username: string, currentDate: DateTime) =
|
|||
|> ignore),
|
||||
[| box currentDate |]
|
||||
|
||||
Html.article [ props.className
|
||||
Html.article [
|
||||
Html.h1 [ prop.text
|
||||
$"""{username} - {match score with
|
||||
| LoadingScore -> "Loading"
|
||||
|
|
|
@ -12,5 +12,6 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id="feliz-app"></div>
|
||||
<script type="module" src="./Main.fs.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
10
vite.config.js
Normal file
10
vite.config.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
import { defineConfig } from 'vite'
|
||||
|
||||
export default defineConfig({
|
||||
root: "src",
|
||||
build: {
|
||||
outDir: "../public",
|
||||
emptyOutDir: true,
|
||||
sourcemap: true,
|
||||
}
|
||||
});
|
|
@ -1,9 +0,0 @@
|
|||
// common utilities used by webpack
|
||||
var realFs = require('fs')
|
||||
var gracefulFs = require('graceful-fs')
|
||||
|
||||
module.exports = {
|
||||
// Patches the fs native module with the alternative graceful-fs module
|
||||
// which handles EMFILE errors internally
|
||||
patchGracefulFileSystem: () => gracefulFs.gracefulify(realFs)
|
||||
}
|
|
@ -1,163 +0,0 @@
|
|||
// Template for webpack.config.js in Fable projects
|
||||
// In most cases, you'll only need to edit the CONFIG object (after dependencies)
|
||||
// See below if you need better fine-tuning of Webpack options
|
||||
var path = require("path");
|
||||
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
var CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
var MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
||||
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
|
||||
const Dotenv = require('dotenv-webpack');
|
||||
const {patchGracefulFileSystem} = require("./webpack.common.js");
|
||||
patchGracefulFileSystem();
|
||||
|
||||
// If we're running the webpack-dev-server, assume we're in development mode
|
||||
var isProduction = !process.argv.find(v => v.indexOf('webpack-dev-server') !== -1);
|
||||
|
||||
const isDevelopment = !isProduction && process.env.NODE_ENV !== 'production';
|
||||
|
||||
var CONFIG = {
|
||||
// The tags to include the generated JS and CSS will be automatically injected in the HTML template
|
||||
// See https://github.com/jantimon/html-webpack-plugin
|
||||
indexHtmlTemplate: "./src/index.html",
|
||||
fsharpEntry: "./src/Main.fs.js",
|
||||
outputDir: "./dist",
|
||||
assetsDir: "./public",
|
||||
devServerPort: 8080,
|
||||
// When using webpack-dev-server, you may need to redirect some calls
|
||||
// to a external API server. See https://webpack.js.org/configuration/dev-server/#devserver-proxy
|
||||
devServerProxy: {
|
||||
'/api/*': {
|
||||
// assuming the backend is running on port 5000
|
||||
target: "http://localhost:5000",
|
||||
changeOrigin: true
|
||||
}
|
||||
},
|
||||
// Use babel-preset-env to generate JS compatible with most-used browsers.
|
||||
// More info at https://babeljs.io/docs/en/next/babel-preset-env.html
|
||||
babel: {
|
||||
plugins: [isDevelopment && require.resolve('react-refresh/babel')].filter(Boolean),
|
||||
presets: ["@babel/preset-env", "@babel/preset-react"]
|
||||
}
|
||||
}
|
||||
|
||||
console.log("Bundling for " + (isProduction ? "production" : "development") + "...");
|
||||
|
||||
// The HtmlWebpackPlugin allows us to use a template for the index.html page
|
||||
// and automatically injects <script> or <link> tags for generated bundles.
|
||||
var commonPlugins = [
|
||||
new HtmlWebpackPlugin({
|
||||
filename: 'index.html',
|
||||
template: resolve(CONFIG.indexHtmlTemplate)
|
||||
}),
|
||||
|
||||
new Dotenv({
|
||||
path: "./.env",
|
||||
silent: false,
|
||||
systemvars: true
|
||||
})
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
// In development, bundle styles together with the code so they can also
|
||||
// trigger hot reloads. In production, put them in a separate CSS file.
|
||||
entry: {
|
||||
app: [resolve(CONFIG.fsharpEntry)]
|
||||
},
|
||||
// Add a hash to the output file name in production
|
||||
// to prevent browser caching if code changes
|
||||
output: {
|
||||
path: resolve(CONFIG.outputDir),
|
||||
filename: isProduction ? '[name].[hash].js' : '[name].js'
|
||||
},
|
||||
mode: isProduction ? "production" : "development",
|
||||
devtool: isProduction ? "source-map" : "eval-source-map",
|
||||
optimization: {
|
||||
// Split the code coming from npm packages into a different file.
|
||||
// 3rd party dependencies change less often, let the browser cache them.
|
||||
splitChunks: {
|
||||
cacheGroups: {
|
||||
commons: {
|
||||
test: /node_modules/,
|
||||
name: "vendors",
|
||||
chunks: "all"
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
// Besides the HtmlPlugin, we use the following plugins:
|
||||
// PRODUCTION
|
||||
// - MiniCssExtractPlugin: Extracts CSS from bundle to a different file
|
||||
// To minify CSS, see https://github.com/webpack-contrib/mini-css-extract-plugin#minimizing-for-production
|
||||
// - CopyWebpackPlugin: Copies static assets to output directory
|
||||
// DEVELOPMENT
|
||||
// - HotModuleReplacementPlugin: Enables hot reloading when code changes without refreshing
|
||||
plugins: isProduction ?
|
||||
commonPlugins.concat([
|
||||
new MiniCssExtractPlugin({filename: 'style.[contenthash].css'}),
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{from: resolve(CONFIG.assetsDir)}
|
||||
]
|
||||
}),
|
||||
])
|
||||
: commonPlugins.concat([
|
||||
new ReactRefreshWebpackPlugin()
|
||||
]),
|
||||
resolve: {
|
||||
// See https://github.com/fable-compiler/Fable/issues/1490
|
||||
symlinks: false,
|
||||
modules: [resolve("./node_modules")],
|
||||
alias: {
|
||||
// Some old libraries still use an old specific version of core-js
|
||||
// Redirect the imports of these libraries to the newer core-js
|
||||
'core-js/es6': 'core-js/es'
|
||||
}
|
||||
},
|
||||
// Configuration for webpack-dev-server
|
||||
devServer: {
|
||||
publicPath: "/",
|
||||
contentBase: resolve(CONFIG.assetsDir),
|
||||
port: CONFIG.devServerPort,
|
||||
proxy: CONFIG.devServerProxy,
|
||||
hot: true,
|
||||
inline: true
|
||||
},
|
||||
// - babel-loader: transforms JS to old syntax (compatible with old browsers)
|
||||
// - sass-loaders: transforms SASS/SCSS into JS
|
||||
// - file-loader: Moves files referenced in the code (fonts, images) into output folder
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.(js|jsx)$/,
|
||||
exclude: /node_modules/,
|
||||
use: {
|
||||
loader: 'babel-loader',
|
||||
options: CONFIG.babel
|
||||
},
|
||||
},
|
||||
{
|
||||
test: /\.(sass|scss|css)$/,
|
||||
use: [
|
||||
isProduction
|
||||
? MiniCssExtractPlugin.loader
|
||||
: 'style-loader',
|
||||
{
|
||||
loader: 'css-loader',
|
||||
},
|
||||
{
|
||||
loader: 'sass-loader',
|
||||
options: {implementation: require("sass")}
|
||||
}
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)(\?.*)?$/,
|
||||
use: ["file-loader"]
|
||||
}
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
function resolve(filePath) {
|
||||
return path.isAbsolute(filePath) ? filePath : path.join(__dirname, filePath);
|
||||
}
|
158
webpack.tests.js
158
webpack.tests.js
|
@ -1,158 +0,0 @@
|
|||
// Template for webpack.config.js in Fable projects
|
||||
// In most cases, you'll only need to edit the CONFIG object (after dependencies)
|
||||
// See below if you need better fine-tuning of Webpack options
|
||||
|
||||
// Dependencies. Also required: core-js, @babel/core,
|
||||
// @babel/preset-env, babel-loader
|
||||
var path = require("path");
|
||||
var webpack = require("webpack");
|
||||
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
var CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
var MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
||||
const Dotenv = require('dotenv-webpack');
|
||||
const {patchGracefulFileSystem} = require("./webpack.common.js");
|
||||
patchGracefulFileSystem();
|
||||
|
||||
module.exports = (env, argv) => {
|
||||
const isProduction = argv.mode === 'production'
|
||||
const isDevelopment = argv.mode === 'development'
|
||||
console.log("Bundling for " + (isProduction ? "production" : "development") + "...");
|
||||
|
||||
var CONFIG = {
|
||||
// The tags to include the generated JS and CSS will be automatically injected in the HTML template
|
||||
// See https://github.com/jantimon/html-webpack-plugin
|
||||
indexHtmlTemplate: "./tests/index.html",
|
||||
fsharpEntry: "./tests/Tests.fs.js",
|
||||
outputDir: "./dist",
|
||||
assetsDir: "./public",
|
||||
devServerPort: 8085,
|
||||
// When using webpack-dev-server, you may need to redirect some calls
|
||||
// to a external API server. See https://webpack.js.org/configuration/dev-server/#devserver-proxy
|
||||
devServerProxy: undefined,
|
||||
// Use babel-preset-env to generate JS compatible with most-used browsers.
|
||||
// More info at https://babeljs.io/docs/en/next/babel-preset-env.html
|
||||
babel: {
|
||||
presets: [
|
||||
// In case interop is used with React/Jsx components, this React preset would be required
|
||||
["@babel/preset-react"],
|
||||
["@babel/preset-env", {
|
||||
"targets": "> 0.25%, not dead",
|
||||
"modules": false,
|
||||
// This adds polyfills when needed. Requires core-js dependency.
|
||||
// See https://babeljs.io/docs/en/babel-preset-env#usebuiltins
|
||||
"useBuiltIns": "usage",
|
||||
"corejs": 3
|
||||
}]
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
// The HtmlWebpackPlugin allows us to use a template for the index.html page
|
||||
// and automatically injects <script> or <link> tags for generated bundles.
|
||||
var commonPlugins = [
|
||||
new HtmlWebpackPlugin({
|
||||
filename: 'index.html',
|
||||
template: resolve(CONFIG.indexHtmlTemplate)
|
||||
}),
|
||||
|
||||
new Dotenv({
|
||||
path: "./.env",
|
||||
silent: false,
|
||||
systemvars: true
|
||||
})
|
||||
];
|
||||
|
||||
return {
|
||||
// In development, bundle styles together with the code so they can also
|
||||
// trigger hot reloads. In production, put them in a separate CSS file.
|
||||
entry: {
|
||||
app: [resolve(CONFIG.fsharpEntry)]
|
||||
},
|
||||
// Add a hash to the output file name in production
|
||||
// to prevent browser caching if code changes
|
||||
output: {
|
||||
path: resolve(CONFIG.outputDir),
|
||||
filename: isProduction ? '[name].[contenthash].js' : '[name].js'
|
||||
},
|
||||
devtool: isProduction ? "source-map" : "eval-source-map",
|
||||
optimization: {
|
||||
// Split the code coming from npm packages into a different file.
|
||||
// 3rd party dependencies change less often, let the browser cache them.
|
||||
splitChunks: {
|
||||
cacheGroups: {
|
||||
commons: {
|
||||
test: /node_modules/,
|
||||
name: "vendors",
|
||||
chunks: "all"
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
plugins: commonPlugins.concat([
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{from: resolve(CONFIG.assetsDir)}
|
||||
]
|
||||
}),
|
||||
]),
|
||||
|
||||
resolve: {
|
||||
// See https://github.com/fable-compiler/Fable/issues/1490
|
||||
symlinks: false,
|
||||
modules: [resolve("./node_modules")],
|
||||
alias: {
|
||||
// Some old libraries still use an old specific version of core-js
|
||||
// Redirect the imports of these libraries to the newer core-js
|
||||
'core-js/es6': 'core-js/es'
|
||||
}
|
||||
},
|
||||
// Configuration for webpack-dev-server
|
||||
devServer: {
|
||||
publicPath: "/",
|
||||
contentBase: resolve(CONFIG.assetsDir),
|
||||
port: CONFIG.devServerPort,
|
||||
proxy: CONFIG.devServerProxy,
|
||||
hot: true,
|
||||
inline: true
|
||||
},
|
||||
// - fable-loader: transforms F# into JS
|
||||
// - babel-loader: transforms JS to old syntax (compatible with old browsers)
|
||||
// - sass-loaders: transforms SASS/SCSS into JS
|
||||
// - file-loader: Moves files referenced in the code (fonts, images) into output folder
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.(js|jsx)$/,
|
||||
exclude: /node_modules/,
|
||||
use: {
|
||||
loader: 'babel-loader',
|
||||
options: CONFIG.babel
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.(sass|scss|css)$/,
|
||||
use: [
|
||||
isProduction
|
||||
? MiniCssExtractPlugin.loader
|
||||
: 'style-loader',
|
||||
{
|
||||
loader: 'css-loader'
|
||||
},
|
||||
{
|
||||
loader: 'sass-loader',
|
||||
options: {implementation: require("sass")}
|
||||
}
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)(\?.*)?$/,
|
||||
use: ["file-loader"]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function resolve(filePath) {
|
||||
return path.isAbsolute(filePath) ? filePath : path.join(__dirname, filePath);
|
||||
}
|
Loading…
Add table
Reference in a new issue