feat: fa6, deps update, repo reorga

This commit is contained in:
tupadr3
2024-05-09 17:29:26 +00:00
parent fa3f885dbd
commit 2411a9ba5d
16213 changed files with 336798 additions and 137680 deletions

50
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,50 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run devel",
"type": "node",
"request": "launch",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/lib/index.js",
"args": [
"--devel"
]
},
{
"name": "Run devel fa6",
"type": "node",
"request": "launch",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/lib/index.js",
"args": [
"--devel",
"--fonts",
"fa6"
]
},
{
"name": "Build examples",
"type": "node",
"request": "launch",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/lib/index.js",
"args": [
"--devel",
"--examples"
]
}
]
}

37
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,37 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "devel",
"type": "shell",
"command": "node ./src/lib/index.js --devel",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "devel",
"type": "shell",
"command": "node ./src/lib/index.js --devel",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build",
"type": "shell",
"command": "rm .tmp/build -rf && node ./src/lib/index.js -c 4 --release",
"problemMatcher": []
},
{
"label": "clean",
"type": "shell",
"command": "rm .tmp -rf",
"problemMatcher": []
}
]
}