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
image: registry.gitlab.com/hosttoday/ht-docker-node:npmci
variables:
GIT_STRATEGY: clone
cache:
paths:

2
package-lock.json generated
View File

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

View File

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

View File

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