Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • allow-installing-subset-of-poetry-packages
  • bw_add_error_cause
  • bw_dockerhub_refs_elimination
  • develop
  • kbotor/add-dynamic-tag-job-templates
  • main
  • msobczyk/add_user_hived_to_group_users
  • msobczyk/modify_docker_builder_image
  • msobczyk/modify_tox_test_runner_image
  • tm-npm-provenance-enable
  • tm-remove-tail-npm-pack-package
  • upgrade-to-ubuntu-23.10
12 results

Target

Select target project
  • hive/common-ci-configuration
1 result
Select Git revision
  • allow-installing-subset-of-poetry-packages
  • bw_add_error_cause
  • bw_dockerhub_refs_elimination
  • develop
  • kbotor/add-dynamic-tag-job-templates
  • main
  • msobczyk/add_user_hived_to_group_users
  • msobczyk/modify_docker_builder_image
  • msobczyk/modify_tox_test_runner_image
  • tm-npm-provenance-enable
  • tm-remove-tail-npm-pack-package
  • upgrade-to-ubuntu-23.10
12 results
Show changes
Commits on Source (5)
{
"name": "Hive NodeJS & Typescript",
"image": "registry.gitlab.syncad.com/hive/common-ci-configuration/emsdk:4.0.1-2@sha256:d0c5fbd811ef2447fdf411ee1e2a111c50ad0ec610cf3d6bf2d186530bc883ad",
"containerUser": "emscripten",
"customizations": {
"vscode": {
"extensions": []
}
}
}
\ No newline at end of file
......@@ -3,3 +3,6 @@
# Enforce strict engine-versions from package.json
engine-strict=true
# Always install/remove dependencies from the pnpm workspace root
ignore-workspace-root-check=true
......@@ -5,38 +5,38 @@ catalogs:
# Can be referenced through "catalog:rollup-toolset"
rollup-toolset:
rollup: 4.24.0
rollup-plugin-copy: ^3.5.0
rollup-plugin-dts: ^6.1.1
"@rollup/plugin-commonjs": ^27.0.0
"@rollup/plugin-node-resolve": ^15.3.1
"@rollup/plugin-replace": ^6.0.2
rollup-plugin-copy: 3.5.0
rollup-plugin-dts: 6.1.1
"@rollup/plugin-commonjs": 27.0.0
"@rollup/plugin-node-resolve": 15.3.1
"@rollup/plugin-replace": 6.0.2
typedoc-toolset:
"typedoc": "0.27.3"
"typedoc-gitlab-wiki-theme": "^2.1.0"
"typedoc-plugin-markdown": "4.3.1"
"typedoc": 0.27.3
"typedoc-gitlab-wiki-theme": 2.1.0
"typedoc-plugin-markdown": 4.3.1
typescript-toolset:
typescript: 5.7.3
tslib: ^2.8.1
tsx: ^4.19.2
tslib: 2.8.1
tsx: 4.19.2
proto-toolset:
protobufjs: ^7.2.5
ts-proto: ^1.172.0
protobufjs: 7.2.5
ts-proto: 1.172.0
playwright-toolset:
"@playwright/test": ^1.50.1
playwright: ^1.50.1
http-server: ^14.1.1
"@playwright/test": 1.50.1
playwright: 1.50.1
http-server: 14.1.1
husky:
husky: 8.0.3
husky: 9.1.5
terser:
terser: ^5.39.0
terser: 5.39.0
size-limit-toolset:
size-limit: ^11.1.6
"@size-limit/file": ^11.1.6
size-limit: 11.1.6
"@size-limit/file": 11.1.6
......@@ -15,7 +15,8 @@ pushd "${SOURCE_DIR}" # move to the project directory (where package.json file i
"${SCRIPTPATH}/npm_generate_version.sh" "${SOURCE_DIR}" "${REGISTRY_URL}" "${SCOPE}" "${PROJECT_NAME}" "${COMMIT_REF_PROTECTED}" "${COMMIT_TAG}"
pnpm pack --pack-destination "${OUTPUT_DIR}" --json > "${OUTPUT_DIR}/built_package_info.json"
# warning pnpm prints additional (non json) lines referencing prepack actions done while packing. They start from `>` and must be filtered out before processing by jq
pnpm pack --pack-destination "${OUTPUT_DIR}" --json | grep -v '^>.*$' > "${OUTPUT_DIR}/built_package_info.json"
BUILT_PACKAGE_NAME=$(jq -r .filename "${OUTPUT_DIR}/built_package_info.json")
{
echo PACKAGE_SOURCE_DIR="${SOURCE_DIR}"
......
......@@ -3,7 +3,7 @@ include:
variables:
# uses registry.gitlab.syncad.com/hive/common-ci-configuration/emsdk:4.0.1-2
EMSCRIPTEN_IMAGE_TAG: "4.0.1-2@sha256:20c7e44736ce12c9ddb29e1c5c73dd9f0e73704669889212e611069eecb7c5a8"
EMSCRIPTEN_IMAGE_TAG: "4.0.1-2@sha256:d0c5fbd811ef2447fdf411ee1e2a111c50ad0ec610cf3d6bf2d186530bc883ad"
EMSCRIPTEN_IMAGE: "registry.gitlab.syncad.com/hive/common-ci-configuration/emsdk:$EMSCRIPTEN_IMAGE_TAG"
.node_based_job_base:
......