Skip to content

Commit

Permalink
Change file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
BrainMaestro committed Feb 11, 2017
1 parent 7fbbbe8 commit 18cdfca
Show file tree
Hide file tree
Showing 14 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,4 +1,3 @@
node_modules
dist
.idea
cerebro*
2 changes: 1 addition & 1 deletion .npmignore
Expand Up @@ -2,5 +2,5 @@ src
.babelrc
node_modules
scripts
screenshot.png
usage.gif
webpack.config.js
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -20,9 +20,9 @@ Google and Stackoverflow implement some form of rate limiting, so constant searc
- [ ] Add loading indicator.
- [ ] Indicate selected answer.
- [ ] Show the user that posted each answer.
- [ ] Sort answers.
- [ ] Make a proper usage gif or screenshot.

This was inspired by the great work done by santinic in [how2](https://github.com/santinic/how2)

## Related
* [Cerebro](http://github.com/KELiON/cerebro) – main repo for Cerebro app;
Expand Down
1 change: 0 additions & 1 deletion empty

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "cerebro-stackoverflow",
"version": "0.1",
"version": "0.1.2",
"description": "Cerebro plugin to find answers to questions on stack overflow",
"license": "MIT",
"repository": "BrainMaestro/cerebro-stackoverflow",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/index.js
@@ -1,7 +1,7 @@
'use strict';
const React = require('react');
const icon = require('./icon.png');
const Preview = require('./Preview');
const Preview = require('./preview');

const stackoverflowPlugin = ({term, display, actions}) => {
display({
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions src/Preview/search.js → src/search.js
Expand Up @@ -45,6 +45,7 @@ function get(questionId, callback, answers = false) {
.query(defaultQuery)
.query({
filter: 'withbody',
sort: 'votes',
})
.end(callback);
}
Expand Down
File renamed without changes.

0 comments on commit 18cdfca

Please sign in to comment.