Compare commits

...

2 Commits

Author SHA1 Message Date
85adcbdba4 2.0.4 2019-08-22 12:20:47 +02:00
0ed11287eb fix(core): update 2019-08-22 12:20:46 +02:00
4 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,7 @@
# gitzone ci_default # gitzone ci_default
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
variables:
GIT_STRATEGY: clone
cache: cache:
paths: paths:

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@tsclass/tsclass", "name": "@tsclass/tsclass",
"version": "2.0.3", "version": "2.0.4",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@tsclass/tsclass", "name": "@tsclass/tsclass",
"version": "2.0.3", "version": "2.0.4",
"private": false, "private": false,
"description": "common classes for TypeScript", "description": "common classes for TypeScript",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -1,14 +1,21 @@
// Business // Business
import * as business from './business';
export * from './business'; export * from './business';
// Finance // Finance
import * as finance from './finance';
export * from './finance'; export * from './finance';
// Content // Content
import * as content from './content';
export * from './content'; export * from './content';
// General // General
import * as general from './general';
export * from './general'; export * from './general';
// Network // Network
import * as network from './network';
export * from './network'; export * from './network';
export { business, finance, content, general, network };