Skip to content

Commit 73399d9

Browse files
author
Vlad Balin
committed
Version 2.1
2 parents 9f8874a + 34d82af commit 73399d9

Some content is hidden

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

88 files changed

+26330
-407
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/attributes/dist/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/attributes/index.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IOEndpoint, IOOptions, IOPromise } from '../io-tools';
1+
import { IOEndpoint, IOOptions, IOPromise } from 'type-r';
22
export declare function create(): AttributesEndpoint;
33
export { create as attributesIO };
44
export declare class AttributesEndpoint implements IOEndpoint {
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/attributes/lib/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/attributes/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"name": "attributesIO",
3-
"main": "./index.js",
4-
"jsnext:main": "../../lib/endpoints/attributes.js",
5-
"module": "../../lib/endpoints/attributes.js",
6-
"types": "../../lib/endpoints/attributes.d.ts",
3+
"main": "./dist/index.js",
4+
"jsnext:main": "./lib/index.js",
5+
"module": "./lib/index.js",
6+
"types": "./lib/index.d.ts",
77
"scripts": {
8+
"build":"../../node_modules/.bin/tsc && ../../node_modules/.bin/rollup --config"
89
},
910
"author": "Vlad Balin",
1011
"license": "MIT"

endpoints/attributes/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import uglify from 'rollup-plugin-uglify';
33
import sourcemaps from 'rollup-plugin-sourcemaps';
44

55
export default {
6-
input : 'lib/endpoints/attributes.js',
6+
input : 'lib/index.js',
77

88
output : {
9-
file : 'endpoints/attributes/index.js',
9+
file : 'dist/index.js',
1010
format : 'umd',
1111
name : 'attributesIO'
1212
},

0 commit comments

Comments
 (0)