Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ This way both the local and slack adapters can share these.
To run locally (after running a good ol' `npm i` of course):

```sh
npm start
npm run local
```

To run on Slack:
Expand Down
2 changes: 1 addition & 1 deletion adapters/_loadDataLocal.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Promise = require('bluebird');

export default () => new Promise(resolve => {
module.exports = () => new Promise(resolve => {
const items = require('../data/example_items.json');
const areas = require('../data/example_areas.json');
const doors = require('../data/example_doors.json');
Expand Down