Skip to content

Commit 510bfb9

Browse files
committed
init, initial structure with Shrimps example already done
0 parents  commit 510bfb9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3860
-0
lines changed

.babelrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "presets": ["env", "es2017"], "plugins": ["transform-runtime"] }

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
npm-debug.log
4+
.DS_Store

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
npm-debug.log
3+
media

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- "node"
4+
- "8"
5+
- "6"

.vscode/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"prettier.singleQuote": true,
4+
"prettier.trailingComma": "es5",
5+
"prettier.useTabs": false,
6+
"prettier.tabWidth": 2,
7+
"prettier.semi": false
8+
}

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Seagull Code Generators
2+
3+
[![Build Status](https://travis-ci.org/seagull-js/application-loader.svg?branch=master)](https://travis-ci.org/seagull-js/application-loader)
4+
[![npm version](https://badge.fury.io/js/%40seagull%2Fapplication-loader.svg)](https://badge.fury.io/js/%40seagull%2Fapplication-loader)
5+
[![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](http://www.gnu.org/licenses/lgpl-3.0)
6+
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
7+
[![TypeScript](https://badges.frapsoft.com/typescript/code/typescript.svg?v=101)](https://github.com/ellerbrock/typescript-badges/)
8+
9+
This repo maintains the scaffolding capabilities and tooling for AST transforms
10+
for seagull apps. The primary use case is within the seagul CLI tool, but
11+
other seagull plugins may use the app skeletton generator for their testsuites.
12+
13+
## Example Usage
14+
15+
```typescript
16+
import {} from '@seagull/application-loader'
17+
```

docs/assets/css/main.css

+865
Large diffs are not rendered by default.

docs/assets/css/main.css.map

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/images/icons.png

9.26 KB
Loading

docs/assets/images/[email protected]

27.1 KB
Loading

docs/assets/images/widgets.png

480 Bytes
Loading

docs/assets/images/[email protected]

855 Bytes
Loading

docs/assets/js/main.js

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/js/search.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)