Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

Commit

Permalink
Bundling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asvae committed Mar 31, 2018
1 parent 562fe73 commit 0e052ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ executor.runFresh()
### LadderExecutor

```javascript
// We develop a live search.
// This example is live search.
import { LadderExecutor } from 'asva-executors'
const executor = new Executor(liveSearchCall)

// Here's the case when user takes a nap on his keyboard.
// Imagine the case when user takes a nap on his keyboard.
executor.run('a') // This request will be run
executor.run('aa') // This request won't be run
executor.run('aaa') // This request won't be run
Expand All @@ -106,7 +106,7 @@ executor.start()
executor.stop()
```

You have to stop `RepeatExecutor` to disable it. Similar to `setInterval` command it won't be garbage collected until then.
You have to stop `RepeatExecutor` if you don't need it anymore. Similar to `setInterval` command it won't be garbage collected until then.

-----------------------

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "asva-executors",
"version": "0.0.12",
"version": "0.0.20",
"description": "Helper classes for your async flow control",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/build/webpack-config-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ module.exports = function () {
path: config.FOLDERS.DIST,
filename: 'src/index.js',
publicPath: '/',
libraryTarget: 'umd',
},
module: {
rules: [
Expand Down

0 comments on commit 0e052ee

Please sign in to comment.