Skip to content

Commit

Permalink
restore dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesus89 committed Jul 2, 2024
1 parent 4cc3fc0 commit e9033a2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions clouds/snowflake/common/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"license": "BSD-3-Clause",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"cli-progress": "^3.12.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"cli-progress": "^3.11.2",
"eslint": "^7.25.0",
"jest": "^29.0.0",
"markdownlint-cli": "^0.41.0",
"rollup": "^4.18.0",
"markdownlint-cli": "^0.32.2",
"rollup": "^2.47.0",
"rollup-plugin-bundle-size": "^1.0.3",
"snowflake-sdk": "1.9.3"
"rollup-plugin-terser": "^7.0.2"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'path';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import terser from '@rollup/plugin-terser';
import { terser } from 'rollup-plugin-terser';
import bundleSize from 'rollup-plugin-bundle-size';

// Find final input path from dirs array
Expand Down
4 changes: 2 additions & 2 deletions clouds/snowflake/libraries/javascript/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ifdef UNIT_TEST
DIRS=$(LIBS_DIR) \
FILENAME=$${f}.js \
OUTPUT=$(BUILD_DIR)/$${f}.js \
rollup --config $(COMMON_DIR)/rollup.config.mjs $(BUILD_PARAMS); \
rollup --config $(COMMON_DIR)/rollup.config.js $(BUILD_PARAMS); \
done
else
$(COMMON_DIR)/list_libraries.js $(MODULES_DIRS) --diff="$(diff)" --modules=$(modules) --functions=$(functions) --nodeps=$(nodeps) 1>/dev/null # Check errors
Expand All @@ -59,7 +59,7 @@ else
DIRS=$(LIBS_DIRS) \
FILENAME=$${f}.js \
OUTPUT=$(BUILD_DIR)/$${f}.js \
rollup --config $(COMMON_DIR)/rollup.config.mjs $(BUILD_PARAMS); \
rollup --config $(COMMON_DIR)/rollup.config.js $(BUILD_PARAMS); \
done
endif

Expand Down

0 comments on commit e9033a2

Please sign in to comment.