First file translated to lua
This commit is contained in:
parent
a370f468a4
commit
f1533bfd9c
12 changed files with 742 additions and 261 deletions
48
.gitignore
vendored
48
.gitignore
vendored
|
|
@ -1,4 +1,46 @@
|
|||
node_modules
|
||||
yarn.lock
|
||||
# always ignore files
|
||||
*.DS_Store
|
||||
.idea
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
# include common debug launch configs
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
!.vscode/launch.sample.json
|
||||
*.sublime-*
|
||||
.settings/
|
||||
|
||||
# test related, or directories generated by tests
|
||||
test/actual
|
||||
actual
|
||||
coverage
|
||||
.nyc_output
|
||||
.nyc*
|
||||
debug.log
|
||||
/luacov.*
|
||||
/lcov*
|
||||
/site
|
||||
/output.txt
|
||||
cachegrind.out.*
|
||||
callgrind.out.*
|
||||
|
||||
# npm
|
||||
node_modules
|
||||
npm-debug.log
|
||||
|
||||
# yarn
|
||||
yarn.lock
|
||||
yarn-error.log
|
||||
|
||||
# misc
|
||||
_gh_pages
|
||||
_draft
|
||||
_drafts
|
||||
bower_components
|
||||
vendor
|
||||
temp
|
||||
tmp
|
||||
TODO.md
|
||||
package-lock.json
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue