mirror of
https://github.com/tupadr3/plantuml-icon-font-sprites.git
synced 2026-01-09 19:02:01 +00:00
feat: fa6, deps update, repo reorga
This commit is contained in:
50
.vscode/launch.json
vendored
Normal file
50
.vscode/launch.json
vendored
Normal 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
37
.vscode/tasks.json
vendored
Normal 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": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user