Skip to content

Commit f415da8

Browse files
committed
Disabled minification to make easier handling with bundling and reading source code
1 parent 25fc061 commit f415da8

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-driven-io/pongo-core",
3-
"version": "0.16.4-alpha.1",
3+
"version": "0.16.4-alpha.2",
44
"description": "Pongo - Mongo with strong consistency on top of Postgres",
55
"type": "module",
66
"engines": {

src/packages/dumbo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-driven-io/dumbo",
3-
"version": "0.12.1-alpha.1",
3+
"version": "0.12.1-alpha.2",
44
"description": "Dumbo - tools for dealing with PostgreSQL",
55
"type": "module",
66
"scripts": {

src/packages/dumbo/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
clean: true, // clean up the dist folder
88
dts: true, // generate dts files
99
format: ['esm', 'cjs'], // generate cjs and esm files
10-
minify: true, //env === 'production',
10+
minify: false, //env === 'production',
1111
bundle: true, //env === 'production',
1212
skipNodeModulesBundle: true,
1313
watch: env === 'development',

src/packages/pongo/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-driven-io/pongo",
3-
"version": "0.16.4-alpha.1",
3+
"version": "0.16.4-alpha.2",
44
"description": "Pongo - Mongo with strong consistency on top of Postgres",
55
"type": "module",
66
"scripts": {
@@ -87,7 +87,7 @@
8787
"pongo": "./dist/cli.js"
8888
},
8989
"peerDependencies": {
90-
"@event-driven-io/dumbo": "0.12.1-alpha.1",
90+
"@event-driven-io/dumbo": "0.12.1-alpha.2",
9191
"@types/mongodb": "^4.0.7",
9292
"@types/pg": "^8.11.6",
9393
"@types/uuid": "^10.0.0",

src/packages/pongo/src/commandLine/shell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const startRepl = async (options: {
124124
setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);
125125
setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);
126126

127-
console.log(color.green('Starting Pongo Shell (version: 0.16.4-alpha.1)'));
127+
console.log(color.green('Starting Pongo Shell (version: 0.16.4-alpha.2)'));
128128

129129
if (options.logging.printOptions) {
130130
console.log(color.green('With Options:'));

src/packages/pongo/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
clean: true, // clean up the dist folder
88
dts: true, // generate dts files
99
format: ['esm', 'cjs'], // generate cjs and esm files
10-
minify: true, //env === 'production',
10+
minify: false, //env === 'production',
1111
bundle: true, //env === 'production',
1212
skipNodeModulesBundle: true,
1313
watch: env === 'development',

src/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
clean: true, // clean up the dist folder
88
dts: true, // generate dts files
99
format: ['cjs', 'esm'], // generate cjs and esm files
10-
minify: true, //env === 'production',
10+
minify: false, //env === 'production',
1111
bundle: true, //env === 'production',
1212
skipNodeModulesBundle: true,
1313
watch: env === 'development',

0 commit comments

Comments
 (0)