mirror of
https://github.com/Insality/druid
synced 2025-06-27 10:27:48 +02:00
Update workspace, update templates
This commit is contained in:
parent
dc76d3b3d4
commit
81c8e4aa00
30
druid.code-workspace
Normal file
30
druid.code-workspace
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": "."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"files.exclude": {
|
||||||
|
"**/.git": true, // this is a default value
|
||||||
|
"**/.DS_Store": true, // this is a default value
|
||||||
|
|
||||||
|
"**/node_modules": true, // this excludes all folders
|
||||||
|
// named "node_modules" from
|
||||||
|
// the explore tree
|
||||||
|
|
||||||
|
// alternative version
|
||||||
|
"node_modules": true, // this excludes the folder
|
||||||
|
// only from the root of
|
||||||
|
// your workspace
|
||||||
|
".internal": true,
|
||||||
|
"bundle": true,
|
||||||
|
"input": true,
|
||||||
|
"media": true,
|
||||||
|
"build": true,
|
||||||
|
".github": true,
|
||||||
|
".deployer_cache": true,
|
||||||
|
"dist": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,6 @@
|
|||||||
local component = require("druid.component")
|
local component = require("druid.component")
|
||||||
|
|
||||||
|
---@class component_name : druid.base_component
|
||||||
local Component = component.create("component_name")
|
local Component = component.create("component_name")
|
||||||
|
|
||||||
local SCHEME = {
|
local SCHEME = {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
local component = require("druid.component")
|
local component = require("druid.component")
|
||||||
|
|
||||||
|
---@class component_name : druid.base_component
|
||||||
local Component = component.create("component_name")
|
local Component = component.create("component_name")
|
||||||
|
|
||||||
-- Scheme of component gui nodes
|
-- Scheme of component gui nodes
|
||||||
|
@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"folders": [
|
|
||||||
{
|
|
||||||
"path": "../test"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "../editor_scripts"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "../example"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "../docs_md"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user