Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
85adcbdba4 | |||
0ed11287eb |
@ -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
2
package-lock.json
generated
@ -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": {
|
||||||
|
@ -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",
|
||||||
|
@ -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 };
|
||||||
|
Reference in New Issue
Block a user