Skip to content

Commit 4487dc9

Browse files
committed
Rewrite module
* Remove support for Bower, Component, Duo; * Refactor code-style; * Update docs; * Update tests.
1 parent acd6726 commit 4487dc9

15 files changed

+224
-377
lines changed

.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

.eslintrc

-9
This file was deleted.

.gitignore

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.DS_Store
22
*.log
3-
bower_components/
4-
build/
5-
components/
6-
node_modules/
3+
.nyc_output/
74
coverage/
5+
data/
6+
node_modules/
7+
spache-formula.js
8+
spache-formula.min.js

.jscs.json

-128
This file was deleted.

.npmignore

-12
This file was deleted.

.travis.yml

+22-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
language: node_js
2-
script: npm run-script test-travis
2+
sudo: false
33
node_js:
4-
- '0.10'
54
- '0.11'
6-
after_script: npm install [email protected] && cat ./coverage/lcov.info | coveralls
5+
- '0.12'
6+
- '4.0'
7+
- '5.0'
8+
- '6.0'
9+
after_success: bash <(curl -s https://codecov.io/bash)
710
deploy:
8-
provider: npm
9-
10-
api_key:
11-
secure: YoWDacyimYvCc17UmUrEueQuk5GVkzMaa76Cj9B5BhPSa3Z3XKN69Yo9gjXq7LX9HPz5VIXzHXaDWmTnT978VI2ZW0CE8C+FIWkZs1SeXeWvVFC7iuiuLFcROrwxjJZbVp8sDsGxRztbJ6VYjURGF5A4d5kTX/tDlBbi9ZZaBg8=
12-
on:
13-
repo: wooorm/spache-formula
11+
- provider: npm
12+
13+
api_key:
14+
secure: lx4l1zKeVfypPn0amZXcRnKkxWYgmtzkvrjvT/Md+NgTUiyVs+Cu4I0RXnvYK0nKJ572b2iKFBxhKBYcSWMWB8OW6IPHxmw4ZyRWMpXyf1pdpGW0JTKeYlQEJqru7dy91+xAl3TpQLRc5YccQ6iEYZU8wK/y5Hvu3+Ly04HBMpk=
15+
on:
16+
tags: true
17+
node: '5.0'
18+
- provider: releases
19+
api_key:
20+
secure: jGD7p6O+fkl054+4sSfci7WbLoVXoHMhkxQKZ89Gexl/nmaEN6QJK/a+yVkKpDQEwX1GD1f3fS0TqOmkW0aOlpNY35VxZkD0kHqhpqaA4KCH6BdGrFMv/qfXoLiNy8dBfdSg3OaqxTjnIVMTKQzx1D1+BKj34xksD7fiRWwDmPY=
21+
file:
22+
- "spache-formula.js"
23+
- "spache-formula.min.js"
24+
on:
25+
tags: true
26+
node: '6.0'

History.md

-22
This file was deleted.

Readme.md

-63
This file was deleted.

bower.json

-32
This file was deleted.

component.json

-16
This file was deleted.

history.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!--remark setext-->
2+
3+
<!--lint disable no-multiple-toplevel-headings-->
4+
5+
0.1.1 / 2014-11-27
6+
==================

0 commit comments

Comments
 (0)