samgis_core 3.3.0__tar.gz → 3.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: samgis_core
3
- Version: 3.3.0
3
+ Version: 3.4.0
4
4
  Summary: SamGIS CORE
5
5
  License: MIT
6
6
  Author: alessandro trinca tornidor
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "samgis_core"
3
- version = "3.3.0"
3
+ version = "3.4.0"
4
4
  description = "SamGIS CORE"
5
5
  authors = [
6
6
  {name = "alessandro trinca tornidor", email = "alessandro@trinca.tornidor.com"}
@@ -123,9 +123,10 @@ def build_frontend(
123
123
  # install deps
124
124
  os.chdir(project_root_folder / "static")
125
125
  current_folder = os.getcwd()
126
- app_logger.info(f"current_folder:{current_folder}, install pnpm...")
127
- run_command(["which", "npm"])
128
- run_command(["npm", "install", "-g", "npm", "pnpm"])
126
+ app_logger.info(f"current_folder:{current_folder}, check for node path, version and install pnpm...")
127
+ run_command(["which", "node"])
128
+ run_command(["node", "--version"])
129
+ run_command(["corepack", "use", "pnpm@latest"])
129
130
  app_logger.info("install pnpm dependencies...")
130
131
  run_command(["pnpm", "install"])
131
132
 
File without changes
File without changes