Skip to content

Commit

Permalink
Convert to NPM module
Browse files Browse the repository at this point in the history
  • Loading branch information
joelvh committed Feb 26, 2020
1 parent 272831d commit 2c06c40
Show file tree
Hide file tree
Showing 12 changed files with 8,129 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
["@babel/preset-env", {
"targets": {
"esmodules": true
},
"useBuiltIns": "entry"
}]
]
}
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
indent_style = space
indent_size = 2
tab_width = 2
charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf
insert_final_newline = true

[*.txt]
indent_style = tab
indent_size = 4

[*.{diff,md}]
trim_trailing_whitespace = false
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
*.log
.DS_Store
.cache
dist
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
*.log
.DS_Store
.cache
docs
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"semi": false,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 80
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.acceptSuggestionOnEnter": "off",
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": true
}
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Flowy makes creating WebApps with flowchart functionality an incredibly simple t
Made by [Alyssa X](https://alyssax.com)

## Table of contents

- [Installation](#installation)
- [Features](#features)
- [Installation](#installation)
- [Running Flowy](#running-flowy)
Expand All @@ -29,6 +31,14 @@ Made by [Alyssa X](https://alyssax.com)
- [Import the flowchart data](#import-the-flowchart-data)
- [Delete all blocks](#delete-all-blocks)

This comment has been minimized.

Copy link
@rjduncan564

rjduncan564 Apr 9, 2020

](#delete-all-blocks)


## Installation

```bash

This comment has been minimized.

Copy link
@rjduncan564

rjduncan564 Apr 9, 2020

0

npm install flowy
```

### Publish


## Features
Currently, Flowy supports the following:
Expand Down
Loading

1 comment on commit 2c06c40

@rjduncan564
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wy)
@@ -29,6 +31,14 @@ Made by [Alyssa X](https://alyssax

Please sign in to comment.