Update to Cubism 4 SDK for Web R1

This commit is contained in:
Jun Koyama
2020-01-30 18:28:13 +09:00
parent ce2585a919
commit 3b711b8a80
54 changed files with 16247 additions and 0 deletions

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"editorconfig.editorconfig"
]
}

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

@ -0,0 +1,39 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "install",
"problemMatcher": []
},
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": []
},
{
"type": "npm",
"script": "test",
"group": "test",
"problemMatcher": []
},
{
"type": "npm",
"script": "lint",
"group": "test",
"problemMatcher": []
},
{
"type": "npm",
"script": "lint:fix",
"group": "test",
"problemMatcher": []
},
{
"type": "npm",
"script": "clear",
"problemMatcher": []
}
]
}