@voxgig/sdkgen 0.42.3 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/voxgig-sdkgen +1 -1
- package/package.json +1 -1
- package/project/.sdk/src/cmp/go/Gitignore_go.ts +47 -0
- package/project/.sdk/src/cmp/go/Main_go.ts +3 -0
- package/project/.sdk/src/cmp/js/Gitignore_js.ts +35 -0
- package/project/.sdk/src/cmp/js/Main_js.ts +3 -0
- package/project/.sdk/src/cmp/lua/Gitignore_lua.ts +39 -0
- package/project/.sdk/src/cmp/lua/Main_lua.ts +3 -0
- package/project/.sdk/src/cmp/php/Gitignore_php.ts +33 -0
- package/project/.sdk/src/cmp/php/Main_php.ts +3 -0
- package/project/.sdk/src/cmp/py/Gitignore_py.ts +55 -0
- package/project/.sdk/src/cmp/py/Main_py.ts +3 -0
- package/project/.sdk/src/cmp/rb/Gitignore_rb.ts +38 -0
- package/project/.sdk/src/cmp/rb/Main_rb.ts +3 -0
- package/project/.sdk/src/cmp/ts/Gitignore_ts.ts +37 -0
- package/project/.sdk/src/cmp/ts/Main_ts.ts +3 -0
package/bin/voxgig-sdkgen
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
Content,
|
|
4
|
+
File,
|
|
5
|
+
cmp,
|
|
6
|
+
} from '@voxgig/sdkgen'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const Gitignore = cmp(async function Gitignore(_props: any) {
|
|
10
|
+
File({ name: '.gitignore' }, () => {
|
|
11
|
+
Content(`# Compiled object files and binaries
|
|
12
|
+
*.o
|
|
13
|
+
*.a
|
|
14
|
+
*.so
|
|
15
|
+
*.dll
|
|
16
|
+
*.dylib
|
|
17
|
+
*.exe
|
|
18
|
+
*.exe~
|
|
19
|
+
|
|
20
|
+
# Test binaries and output
|
|
21
|
+
*.test
|
|
22
|
+
*.out
|
|
23
|
+
|
|
24
|
+
# Coverage
|
|
25
|
+
coverage.txt
|
|
26
|
+
coverage.html
|
|
27
|
+
*.cover
|
|
28
|
+
|
|
29
|
+
# Go workspace
|
|
30
|
+
go.work
|
|
31
|
+
go.work.sum
|
|
32
|
+
|
|
33
|
+
# Vendored deps
|
|
34
|
+
vendor/
|
|
35
|
+
|
|
36
|
+
# IDE / OS
|
|
37
|
+
.idea/
|
|
38
|
+
.vscode/
|
|
39
|
+
.DS_Store
|
|
40
|
+
`)
|
|
41
|
+
})
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
export {
|
|
46
|
+
Gitignore
|
|
47
|
+
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
|
|
21
21
|
import { Package } from './Package_go'
|
|
22
22
|
import { Config } from './Config_go'
|
|
23
|
+
import { Gitignore } from './Gitignore_go'
|
|
23
24
|
import { MainEntity } from './MainEntity_go'
|
|
24
25
|
|
|
25
26
|
|
|
@@ -37,6 +38,8 @@ const Main = cmp(async function Main(props: any) {
|
|
|
37
38
|
|
|
38
39
|
Package({ target })
|
|
39
40
|
|
|
41
|
+
Gitignore({})
|
|
42
|
+
|
|
40
43
|
// Copy tm/go files with replacements
|
|
41
44
|
Copy({
|
|
42
45
|
from: 'tm/' + target.name,
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
Content,
|
|
4
|
+
File,
|
|
5
|
+
cmp,
|
|
6
|
+
} from '@voxgig/sdkgen'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const Gitignore = cmp(async function Gitignore(_props: any) {
|
|
10
|
+
File({ name: '.gitignore' }, () => {
|
|
11
|
+
Content(`# Dependencies
|
|
12
|
+
node_modules/
|
|
13
|
+
|
|
14
|
+
# Build output
|
|
15
|
+
dist/
|
|
16
|
+
|
|
17
|
+
# Coverage
|
|
18
|
+
coverage/
|
|
19
|
+
|
|
20
|
+
# Logs
|
|
21
|
+
*.log
|
|
22
|
+
npm-debug.log*
|
|
23
|
+
|
|
24
|
+
# IDE / OS
|
|
25
|
+
.idea/
|
|
26
|
+
.vscode/
|
|
27
|
+
.DS_Store
|
|
28
|
+
`)
|
|
29
|
+
})
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
export {
|
|
34
|
+
Gitignore
|
|
35
|
+
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
|
|
21
21
|
import { Package } from './Package_js'
|
|
22
22
|
import { Config } from './Config_js'
|
|
23
|
+
import { Gitignore } from './Gitignore_js'
|
|
23
24
|
import { MainEntity } from './MainEntity_js'
|
|
24
25
|
import { SdkError } from './SdkError_js'
|
|
25
26
|
import { EntityBase } from './EntityBase_js'
|
|
@@ -36,6 +37,8 @@ const Main = cmp(async function Main(props: any) {
|
|
|
36
37
|
|
|
37
38
|
Package({ target })
|
|
38
39
|
|
|
40
|
+
Gitignore({})
|
|
41
|
+
|
|
39
42
|
Copy({
|
|
40
43
|
from: 'tm/' + target.name,
|
|
41
44
|
replace: {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
Content,
|
|
4
|
+
File,
|
|
5
|
+
cmp,
|
|
6
|
+
} from '@voxgig/sdkgen'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const Gitignore = cmp(async function Gitignore(_props: any) {
|
|
10
|
+
File({ name: '.gitignore' }, () => {
|
|
11
|
+
Content(`# Compiled Lua
|
|
12
|
+
*.luac
|
|
13
|
+
|
|
14
|
+
# Native libraries built by LuaRocks
|
|
15
|
+
*.so
|
|
16
|
+
*.dylib
|
|
17
|
+
*.dll
|
|
18
|
+
|
|
19
|
+
# LuaRocks
|
|
20
|
+
.luarocks/
|
|
21
|
+
lua_modules/
|
|
22
|
+
*.rock
|
|
23
|
+
|
|
24
|
+
# Coverage
|
|
25
|
+
luacov.stats.out
|
|
26
|
+
luacov.report.out
|
|
27
|
+
|
|
28
|
+
# IDE / OS
|
|
29
|
+
.idea/
|
|
30
|
+
.vscode/
|
|
31
|
+
.DS_Store
|
|
32
|
+
`)
|
|
33
|
+
})
|
|
34
|
+
})
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
export {
|
|
38
|
+
Gitignore
|
|
39
|
+
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
|
|
21
21
|
import { Package } from './Package_lua'
|
|
22
22
|
import { Config } from './Config_lua'
|
|
23
|
+
import { Gitignore } from './Gitignore_lua'
|
|
23
24
|
import { MainEntity } from './MainEntity_lua'
|
|
24
25
|
|
|
25
26
|
|
|
@@ -33,6 +34,8 @@ const Main = cmp(async function Main(props: any) {
|
|
|
33
34
|
|
|
34
35
|
Package({ target })
|
|
35
36
|
|
|
37
|
+
Gitignore({})
|
|
38
|
+
|
|
36
39
|
// Copy tm/lua files with replacements
|
|
37
40
|
Copy({
|
|
38
41
|
from: 'tm/' + target.name,
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
Content,
|
|
4
|
+
File,
|
|
5
|
+
cmp,
|
|
6
|
+
} from '@voxgig/sdkgen'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const Gitignore = cmp(async function Gitignore(_props: any) {
|
|
10
|
+
File({ name: '.gitignore' }, () => {
|
|
11
|
+
Content(`# Composer
|
|
12
|
+
vendor/
|
|
13
|
+
composer.phar
|
|
14
|
+
|
|
15
|
+
# PHPUnit
|
|
16
|
+
.phpunit.cache/
|
|
17
|
+
.phpunit.result.cache
|
|
18
|
+
|
|
19
|
+
# Coverage
|
|
20
|
+
coverage/
|
|
21
|
+
|
|
22
|
+
# IDE / OS
|
|
23
|
+
.idea/
|
|
24
|
+
.vscode/
|
|
25
|
+
.DS_Store
|
|
26
|
+
`)
|
|
27
|
+
})
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
export {
|
|
32
|
+
Gitignore
|
|
33
|
+
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
|
|
21
21
|
import { Package } from './Package_php'
|
|
22
22
|
import { Config } from './Config_php'
|
|
23
|
+
import { Gitignore } from './Gitignore_php'
|
|
23
24
|
import { MainEntity } from './MainEntity_php'
|
|
24
25
|
|
|
25
26
|
|
|
@@ -33,6 +34,8 @@ const Main = cmp(async function Main(props: any) {
|
|
|
33
34
|
|
|
34
35
|
Package({ target })
|
|
35
36
|
|
|
37
|
+
Gitignore({})
|
|
38
|
+
|
|
36
39
|
// Copy tm/php files with replacements
|
|
37
40
|
Copy({
|
|
38
41
|
from: 'tm/' + target.name,
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
Content,
|
|
4
|
+
File,
|
|
5
|
+
cmp,
|
|
6
|
+
} from '@voxgig/sdkgen'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const Gitignore = cmp(async function Gitignore(_props: any) {
|
|
10
|
+
File({ name: '.gitignore' }, () => {
|
|
11
|
+
Content(`# Byte-compiled / optimized / DLL files
|
|
12
|
+
__pycache__/
|
|
13
|
+
*.py[cod]
|
|
14
|
+
*$py.class
|
|
15
|
+
*.so
|
|
16
|
+
|
|
17
|
+
# Distribution / packaging
|
|
18
|
+
build/
|
|
19
|
+
dist/
|
|
20
|
+
*.egg
|
|
21
|
+
*.egg-info/
|
|
22
|
+
.eggs/
|
|
23
|
+
wheels/
|
|
24
|
+
|
|
25
|
+
# Test / coverage
|
|
26
|
+
.pytest_cache/
|
|
27
|
+
.tox/
|
|
28
|
+
.coverage
|
|
29
|
+
.coverage.*
|
|
30
|
+
htmlcov/
|
|
31
|
+
coverage.xml
|
|
32
|
+
|
|
33
|
+
# Type checkers
|
|
34
|
+
.mypy_cache/
|
|
35
|
+
.pyre/
|
|
36
|
+
.pytype/
|
|
37
|
+
|
|
38
|
+
# Virtual environments
|
|
39
|
+
.venv/
|
|
40
|
+
venv/
|
|
41
|
+
env/
|
|
42
|
+
ENV/
|
|
43
|
+
|
|
44
|
+
# IDE / OS
|
|
45
|
+
.idea/
|
|
46
|
+
.vscode/
|
|
47
|
+
.DS_Store
|
|
48
|
+
`)
|
|
49
|
+
})
|
|
50
|
+
})
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
export {
|
|
54
|
+
Gitignore
|
|
55
|
+
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
|
|
21
21
|
import { Package } from './Package_py'
|
|
22
22
|
import { Config } from './Config_py'
|
|
23
|
+
import { Gitignore } from './Gitignore_py'
|
|
23
24
|
import { MainEntity } from './MainEntity_py'
|
|
24
25
|
|
|
25
26
|
|
|
@@ -33,6 +34,8 @@ const Main = cmp(async function Main(props: any) {
|
|
|
33
34
|
|
|
34
35
|
Package({ target })
|
|
35
36
|
|
|
37
|
+
Gitignore({})
|
|
38
|
+
|
|
36
39
|
// Copy tm/py files with replacements
|
|
37
40
|
Copy({
|
|
38
41
|
from: 'tm/' + target.name,
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
Content,
|
|
4
|
+
File,
|
|
5
|
+
cmp,
|
|
6
|
+
} from '@voxgig/sdkgen'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const Gitignore = cmp(async function Gitignore(_props: any) {
|
|
10
|
+
File({ name: '.gitignore' }, () => {
|
|
11
|
+
Content(`# Bundler / gem build artifacts
|
|
12
|
+
*.gem
|
|
13
|
+
.bundle/
|
|
14
|
+
vendor/bundle/
|
|
15
|
+
pkg/
|
|
16
|
+
|
|
17
|
+
# Test / coverage
|
|
18
|
+
coverage/
|
|
19
|
+
.rspec_status
|
|
20
|
+
|
|
21
|
+
# Documentation
|
|
22
|
+
.yardoc/
|
|
23
|
+
_yardoc/
|
|
24
|
+
doc/
|
|
25
|
+
rdoc/
|
|
26
|
+
|
|
27
|
+
# IDE / OS
|
|
28
|
+
.idea/
|
|
29
|
+
.vscode/
|
|
30
|
+
.DS_Store
|
|
31
|
+
`)
|
|
32
|
+
})
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
export {
|
|
37
|
+
Gitignore
|
|
38
|
+
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
|
|
21
21
|
import { Package } from './Package_rb'
|
|
22
22
|
import { Config } from './Config_rb'
|
|
23
|
+
import { Gitignore } from './Gitignore_rb'
|
|
23
24
|
import { MainEntity } from './MainEntity_rb'
|
|
24
25
|
|
|
25
26
|
|
|
@@ -33,6 +34,8 @@ const Main = cmp(async function Main(props: any) {
|
|
|
33
34
|
|
|
34
35
|
Package({ target })
|
|
35
36
|
|
|
37
|
+
Gitignore({})
|
|
38
|
+
|
|
36
39
|
// Copy tm/rb files with replacements
|
|
37
40
|
Copy({
|
|
38
41
|
from: 'tm/' + target.name,
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
import {
|
|
3
|
+
Content,
|
|
4
|
+
File,
|
|
5
|
+
cmp,
|
|
6
|
+
} from '@voxgig/sdkgen'
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
const Gitignore = cmp(async function Gitignore(_props: any) {
|
|
10
|
+
File({ name: '.gitignore' }, () => {
|
|
11
|
+
Content(`# Dependencies
|
|
12
|
+
node_modules/
|
|
13
|
+
|
|
14
|
+
# Build output
|
|
15
|
+
dist/
|
|
16
|
+
dist-test/
|
|
17
|
+
*.tsbuildinfo
|
|
18
|
+
|
|
19
|
+
# Coverage
|
|
20
|
+
coverage/
|
|
21
|
+
|
|
22
|
+
# Logs
|
|
23
|
+
*.log
|
|
24
|
+
npm-debug.log*
|
|
25
|
+
|
|
26
|
+
# IDE / OS
|
|
27
|
+
.idea/
|
|
28
|
+
.vscode/
|
|
29
|
+
.DS_Store
|
|
30
|
+
`)
|
|
31
|
+
})
|
|
32
|
+
})
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
export {
|
|
36
|
+
Gitignore
|
|
37
|
+
}
|
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
|
|
21
21
|
import { Package } from './Package_ts'
|
|
22
22
|
import { Config } from './Config_ts'
|
|
23
|
+
import { Gitignore } from './Gitignore_ts'
|
|
23
24
|
import { MainEntity } from './MainEntity_ts'
|
|
24
25
|
import { EntityBase } from './EntityBase_ts'
|
|
25
26
|
import { SdkError } from './SdkError_ts'
|
|
@@ -36,6 +37,8 @@ const Main = cmp(async function Main(props: any) {
|
|
|
36
37
|
|
|
37
38
|
Package({ target })
|
|
38
39
|
|
|
40
|
+
Gitignore({})
|
|
41
|
+
|
|
39
42
|
Copy({
|
|
40
43
|
from: 'tm/' + target.name,
|
|
41
44
|
replace: {
|