feat: init

This commit is contained in:
wuyue.xht 2020-03-12 09:56:14 +08:00
parent 8184d0aaf9
commit b0de4f3497
10 changed files with 110 additions and 1 deletions

View File

@ -0,0 +1,16 @@
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Tab indentation
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false

View File

@ -0,0 +1,6 @@
.idea/
.vscode/
build/
.*
~*
node_modules

View File

@ -0,0 +1,3 @@
{
"extends": "./node_modules/@recore/config/.eslintrc"
}

41
packages/runtime-framework/.gitignore vendored Normal file
View File

@ -0,0 +1,41 @@
node_modules/
coverage/
build/
dist/
.idea/
.vscode/
.theia/
.recore/
demo/
~*
package-lock.json
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Logs and databases #
######################
*.log
*.sql
*.sqlite
# OS generated files #
######################
.DS_Store
.Trash*
*.swp
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

View File

@ -0,0 +1,6 @@
{
"semi": true,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "all"
}

View File

@ -1 +1 @@
运行时框架 # 低代码引擎运行时框架

View File

@ -0,0 +1,25 @@
{
"name": "@ali/lowcode-engine-runtime",
"version": "0.0.1",
"description": "runtime for Ali lowCode engine",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"test": "ava",
"test:snapshot": "ava --update-snapshots"
},
"ava": {
"compileEnhancements": false,
"snapshotDir": "test/fixtures/__snapshots__",
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"license": "MIT"
}

View File

@ -0,0 +1 @@
//

View File

@ -0,0 +1,5 @@
import test from 'ava';
test('foobar', t => {
t.pass();
});

View File

@ -0,0 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./lib"
}
}