Skip to content

Commit 213acb7

Browse files
upgrade deps
1 parent 558796d commit 213acb7

Some content is hidden

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

43 files changed

+570
-508
lines changed

.codeclimate.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
languages:
22
JavaScript: true
33
exclude_paths:
4-
- "js/dist/*.js"
5-
- "js/dist/**/*.js"
6-
- "test/*.js"
4+
- "doc/**/*.js"
75
- "test/**/*.js"
6+
- "lib/**/*.js"

.gitignore

Lines changed: 7 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,10 @@
1-
# Logs
2-
logs
3-
*.log
4-
5-
# Runtime data
6-
pids
7-
*.pid
8-
*.seed
9-
10-
# Directory for instrumented libs generated by jscoverage/JSCover
11-
lib-cov
12-
13-
# Coverage directory used by tools like istanbul
14-
coverage
15-
16-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17-
.grunt
18-
19-
# node-waf configuration
20-
.lock-wscript
21-
22-
# Compiled binary addons (http://nodejs.org/api/addons.html)
23-
build/Release
24-
251
# Dependency directory
26-
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
272
node_modules
3+
jspm_packages
4+
5+
# Coverage directory used by nyc
6+
coverage
7+
.nyc_output
288

29-
# groc
30-
doc
9+
# Documentation
10+
gh-pages

.groc.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.jshintrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
language: node_js
22

33
node_js:
4-
- "iojs"
5-
- "0.12"
6-
- "0.11"
7-
- "0.10"
4+
- node
85

96
install:
10-
- npm -d install
7+
- npm install
118

129
script:
13-
- npm test
10+
- npm run cover
1411

1512
after_success:
16-
- ./node_modules/.bin/coveralls < coverage/lcov.info || true
17-
- ./node_modules/.bin/codeclimate < coverage/lcov.info || true
13+
- bash <(curl -s https://codecov.io/bash) || true
14+
- coveralls < coverage/lcov.info || true
15+
- codeclimate-test-reporter < coverage/lcov.info || true

README.md

Lines changed: 0 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -10,94 +10,14 @@ fft( 3 , 4 , u , 0 , 8 , v , 0 , 8 ) ;
1010

1111
[![NPM license](http://img.shields.io/npm/l/aureooms-js-fft.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-fft/master/LICENSE)
1212
[![NPM version](http://img.shields.io/npm/v/aureooms-js-fft.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-fft)
13-
[![Bower version](http://img.shields.io/bower/v/aureooms-js-fft.svg?style=flat)](http://bower.io/search/?q=aureooms-js-fft)
1413
[![Build Status](http://img.shields.io/travis/aureooms/js-fft.svg?style=flat)](https://travis-ci.org/aureooms/js-fft)
1514
[![Coverage Status](http://img.shields.io/coveralls/aureooms/js-fft.svg?style=flat)](https://coveralls.io/r/aureooms/js-fft)
1615
[![Dependencies Status](http://img.shields.io/david/aureooms/js-fft.svg?style=flat)](https://david-dm.org/aureooms/js-fft#info=dependencies)
1716
[![devDependencies Status](http://img.shields.io/david/dev/aureooms/js-fft.svg?style=flat)](https://david-dm.org/aureooms/js-fft#info=devDependencies)
1817
[![Code Climate](http://img.shields.io/codeclimate/github/aureooms/js-fft.svg?style=flat)](https://codeclimate.com/github/aureooms/js-fft)
1918
[![NPM downloads per month](http://img.shields.io/npm/dm/aureooms-js-fft.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-fft)
2019
[![GitHub issues](http://img.shields.io/github/issues/aureooms/js-fft.svg?style=flat)](https://github.com/aureooms/js-fft/issues)
21-
[![Inline docs](http://inch-ci.org/github/aureooms/js-fft.svg?branch=master&style=shields)](http://inch-ci.org/github/aureooms/js-fft)
22-
23-
Can be managed through [jspm](https://github.com/jspm/jspm-cli),
24-
[duo](https://github.com/duojs/duo),
25-
[component](https://github.com/componentjs/component),
26-
[bower](https://github.com/bower/bower),
27-
[ender](https://github.com/ender-js/Ender),
28-
[jam](https://github.com/caolan/jam),
29-
[spm](https://github.com/spmjs/spm),
30-
and [npm](https://github.com/npm/npm).
31-
32-
## Install
33-
34-
### jspm
35-
```terminal
36-
jspm install github:aureooms/js-fft
37-
# or
38-
jspm install npm:aureooms-js-fft
39-
```
40-
### duo
41-
No install step needed for duo!
42-
43-
### component
44-
```terminal
45-
component install aureooms/js-fft
46-
```
47-
48-
### bower
49-
```terminal
50-
bower install aureooms-js-fft
51-
```
52-
53-
### ender
54-
```terminal
55-
ender add aureooms-js-fft
56-
```
57-
58-
### jam
59-
```terminal
60-
jam install aureooms-js-fft
61-
```
62-
63-
### spm
64-
```terminal
65-
spm install aureooms-js-fft --save
66-
```
67-
68-
### npm
69-
```terminal
70-
npm install aureooms-js-fft --save
71-
```
7220

73-
## Require
74-
### jspm
75-
```js
76-
let fft = require( "github:aureooms/js-fft" ) ;
77-
// or
78-
import fft from 'aureooms-js-fft' ;
79-
```
80-
### duo
81-
```js
82-
let fft = require( "aureooms/js-fft" ) ;
83-
```
84-
85-
### component, ender, spm, npm
86-
```js
87-
let fft = require( "aureooms-js-fft" ) ;
88-
```
89-
90-
### bower
91-
The script tag exposes the global variable `fft`.
92-
```html
93-
<script src="bower_components/aureooms-js-fft/js/dist/fft.min.js"></script>
94-
```
95-
Alternatively, you can use any tool mentioned [here](http://bower.io/docs/tools/).
96-
97-
### jam
98-
```js
99-
require( [ "aureooms-js-fft" ] , function ( fft ) { ... } ) ;
100-
```
10121

10222
## Use
10323

bower.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

component.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

doc/css/style.css

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
h1,
2+
h2,
3+
.navigation,
4+
.layout-container > header,
5+
footer
6+
{
7+
border: none;
8+
}
9+
10+
.project-name {
11+
color: #FC913A;
12+
font-weight: bold;
13+
}
14+
15+
.layout-container > header > a.repo-url-github {
16+
font-size: inherit;
17+
display: inline;
18+
background: none;
19+
vertical-align: inherit;
20+
}
21+
22+
.search-box img {
23+
display: none;
24+
}
25+
26+
.search-box::before{
27+
content: "search";
28+
}
29+
30+
.search-input-edge {
31+
height: 0px;
32+
}
33+
34+
.search-result {
35+
width: 300px;
36+
margin-left: 42px;
37+
box-shadow: 1px 1px 13px rgba(0,0,0,0.2);
38+
}
39+
40+
.search-input {
41+
visibility: visible;
42+
}
43+
44+
.search-result li.search-separator {
45+
text-transform: capitalize;
46+
background-color: #ccc;
47+
}
48+
49+
span[data-ice="signature"] > span {
50+
/*font-weight: bold;*/
51+
font-style: italic;
52+
}

doc/manual/example.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

0 commit comments

Comments
 (0)