Skip to content

Commit f16e767

Browse files
author
Vlad Balin
authored
Merge pull request #27 from Volicon/f/promise-io
F/promise io
2 parents 9ec8fe2 + 61fe7e3 commit f16e767

Some content is hidden

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

77 files changed

+1799
-1727
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

endpoints/localStorage/index.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

endpoints/localStorage/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "localStorageIO",
3+
"main": "./index.js",
4+
"jsnext:main": "../../lib/endpoints/localStorage.js",
5+
"module": "../../lib/endpoints/localStorage.js",
6+
"types": "../../lib/endpoints/localStorage.d.ts",
7+
"scripts": {
8+
},
9+
"author": "Vlad Balin",
10+
"license": "MIT"
11+
}
12+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import resolve from 'rollup-plugin-node-resolve';
2+
import uglify from 'rollup-plugin-uglify';
3+
import sourcemaps from 'rollup-plugin-sourcemaps';
4+
5+
export default {
6+
input : 'lib/endpoints/localStorage.js',
7+
8+
output : {
9+
file : 'endpoints/localStorage/index.js',
10+
format : 'umd',
11+
name : 'localStorageIO'
12+
},
13+
plugins: [
14+
resolve(), //for support of `import X from "directory"` rather than verbose `import X from "directory/index"`
15+
sourcemaps(),
16+
uglify()
17+
],
18+
sourcemap: true,
19+
};

endpoints/memory/index.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

endpoints/memory/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

endpoints/memory/package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "memoryIO",
3+
"main": "./index.js",
4+
"jsnext:main": "../../lib/endpoints/memory.js",
5+
"module": "../../lib/endpoints/memory.js",
6+
"types": "../../lib/endpoints/memory.d.ts",
7+
"scripts": {
8+
},
9+
"author": "Vlad Balin",
10+
"license": "MIT"
11+
}
12+

0 commit comments

Comments
 (0)