Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
85adcbdba4 | |||
0ed11287eb |
@ -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
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "2.0.3",
|
||||
"version": "2.0.4",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -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",
|
||||
|
@ -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 };
|
||||
|
Reference in New Issue
Block a user