Skip to content

Commit

Permalink
Version 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad Balin committed Mar 6, 2018
2 parents 9f8874a + 34d82af commit 73399d9
Show file tree
Hide file tree
Showing 88 changed files with 26,330 additions and 407 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

File renamed without changes.
1 change: 1 addition & 0 deletions endpoints/attributes/dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion endpoints/attributes/index.js.map

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IOEndpoint, IOOptions, IOPromise } from '../io-tools';
import { IOEndpoint, IOOptions, IOPromise } from 'type-r';
export declare function create(): AttributesEndpoint;
export { create as attributesIO };
export declare class AttributesEndpoint implements IOEndpoint {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions endpoints/attributes/lib/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions endpoints/attributes/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "attributesIO",
"main": "./index.js",
"jsnext:main": "../../lib/endpoints/attributes.js",
"module": "../../lib/endpoints/attributes.js",
"types": "../../lib/endpoints/attributes.d.ts",
"main": "./dist/index.js",
"jsnext:main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build":"../../node_modules/.bin/tsc && ../../node_modules/.bin/rollup --config"
},
"author": "Vlad Balin",
"license": "MIT"
Expand Down
4 changes: 2 additions & 2 deletions endpoints/attributes/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import uglify from 'rollup-plugin-uglify';
import sourcemaps from 'rollup-plugin-sourcemaps';

export default {
input : 'lib/endpoints/attributes.js',
input : 'lib/index.js',

output : {
file : 'endpoints/attributes/index.js',
file : 'dist/index.js',
format : 'umd',
name : 'attributesIO'
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IOEndpoint, IOOptions, IOPromise, createIOPromise } from '../io-tools'
import { IOEndpoint, IOOptions, IOPromise } from 'type-r'

export function create(){
return new AttributesEndpoint();
Expand Down
21 changes: 21 additions & 0 deletions endpoints/attributes/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "es5",
"module":"es6",
"declaration": true,
"importHelpers": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "./lib",
"noImplicitAny": false,
"removeComments":true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths" : {
"type-r":[ "../../lib" ]
}
},
"files":[
"./src/index.ts"
]
}
2 changes: 2 additions & 0 deletions endpoints/localStorage/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions endpoints/localStorage/dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions endpoints/localStorage/index.js

This file was deleted.

Loading

0 comments on commit 73399d9

Please sign in to comment.