Skip to content

Commit

Permalink
Disabled minification to make easier handling with bundling and readi…
Browse files Browse the repository at this point in the history
…ng source code
  • Loading branch information
oskardudycz committed Dec 4, 2024
1 parent bf6ad7a commit 806ff47
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-driven-io/pongo-core",
"version": "0.16.4-alpha.1",
"version": "0.16.4-alpha.2",
"description": "Pongo - Mongo with strong consistency on top of Postgres",
"type": "module",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/packages/dumbo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-driven-io/dumbo",
"version": "0.12.1-alpha.1",
"version": "0.12.1-alpha.2",
"description": "Dumbo - tools for dealing with PostgreSQL",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/packages/dumbo/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default defineConfig({
clean: true, // clean up the dist folder
dts: true, // generate dts files
format: ['esm', 'cjs'], // generate cjs and esm files
minify: true, //env === 'production',
minify: false, //env === 'production',
bundle: true, //env === 'production',
skipNodeModulesBundle: true,
watch: env === 'development',
Expand Down
4 changes: 2 additions & 2 deletions src/packages/pongo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@event-driven-io/pongo",
"version": "0.16.4-alpha.1",
"version": "0.16.4-alpha.2",
"description": "Pongo - Mongo with strong consistency on top of Postgres",
"type": "module",
"scripts": {
Expand Down Expand Up @@ -87,7 +87,7 @@
"pongo": "./dist/cli.js"
},
"peerDependencies": {
"@event-driven-io/dumbo": "0.12.1-alpha.1",
"@event-driven-io/dumbo": "0.12.1-alpha.2",
"@types/mongodb": "^4.0.7",
"@types/pg": "^8.11.6",
"@types/uuid": "^10.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/packages/pongo/src/commandLine/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const startRepl = async (options: {
setLogLevel(process.env.DUMBO_LOG_LEVEL ?? options.logging.logLevel);
setLogStyle(process.env.DUMBO_LOG_STYLE ?? options.logging.logStyle);

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

if (options.logging.printOptions) {
console.log(color.green('With Options:'));
Expand Down
2 changes: 1 addition & 1 deletion src/packages/pongo/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default defineConfig({
clean: true, // clean up the dist folder
dts: true, // generate dts files
format: ['esm', 'cjs'], // generate cjs and esm files
minify: true, //env === 'production',
minify: false, //env === 'production',
bundle: true, //env === 'production',
skipNodeModulesBundle: true,
watch: env === 'development',
Expand Down
2 changes: 1 addition & 1 deletion src/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default defineConfig({
clean: true, // clean up the dist folder
dts: true, // generate dts files
format: ['cjs', 'esm'], // generate cjs and esm files
minify: true, //env === 'production',
minify: false, //env === 'production',
bundle: true, //env === 'production',
skipNodeModulesBundle: true,
watch: env === 'development',
Expand Down

0 comments on commit 806ff47

Please sign in to comment.