From a3103d08990f514770b5faf7c451876071a7997f Mon Sep 17 00:00:00 2001 From: Young Yu Date: Tue, 16 Jan 2024 12:10:30 -0800 Subject: [PATCH] 1.0.0 - Create initial prod-ready release --- CHANGELOG.md | 3 +++ src/index.ts | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 825c32f..9b1d70b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,4 @@ # Changelog + +## 1.0.0 +Release initial production-ready version of the library diff --git a/src/index.ts b/src/index.ts index a687130..bbfdaec 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,9 @@ import { Config } from './simple-app-config'; +import { NestableDataTypes } from './constants'; +import EnvParser from './utils/envParser'; /* Set exports */ -export { Config }; +export { Config, NestableDataTypes as DataTypes, EnvParser }; /* Set Config to be the default export */ export default Config;