Conduitry
/
contexty
Архивировано
1
Форкнуть 0
Этот коммит содержится в:
Conduitry 2017-06-25 07:47:42 -04:00
родитель 7b455cf93d
Коммит a46df603fd
3 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -37,6 +37,8 @@ This getter retrieves the context created by the appropriate asynchronously ance
## Example
```javascript
let { Contexty } = require('contexty')
let contexty = new Contexty()
let counter = 0

Просмотреть файл

@ -1,5 +1,5 @@
export default {
entry: './src/Contexty.js',
entry: './src/index.js',
external: ['async_hooks'],
interop: false,
sourceMap: true,

1
src/index.js Обычный файл
Просмотреть файл

@ -0,0 +1 @@
export { default as Contexty } from './Contexty.js'