@wexample/js-pseudocode 0.1.2 → 0.1.3

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.
package/.wex/config.yml CHANGED
@@ -1,3 +1,3 @@
1
1
  global:
2
2
  name: js_pseudocode
3
- version: 0.1.2
3
+ version: 0.1.3
@@ -9,12 +9,13 @@ class AppWorkdir(JavascriptPackageWorkdir):
9
9
  from wexample_helpers.helpers.string import string_to_kebab_case
10
10
 
11
11
  raw_value = super().prepare_value(raw_value=raw_value)
12
+ name_config = self.get_runtime_config().search("global.name")
12
13
 
13
14
  def _build_remote_github(target: AppWorkdir) -> str:
14
- return f"git@github.com:wexample/{string_to_kebab_case(target.get_project_name())}.git"
15
+ return f"git@github.com:wexample/{string_to_kebab_case(name_config.get_str())}.git"
15
16
 
16
17
  def _build_remote_gitlab(target: AppWorkdir) -> str:
17
- return f"ssh://git@gitlab.wexample.com:4567/wexample-javascript/{string_to_kebab_case(target.get_project_name())}.git"
18
+ return f"ssh://git@gitlab.wexample.com:4567/wexample-javascript/{string_to_kebab_case(name_config.get_str())}.git"
18
19
 
19
20
  raw_value["git"] = {
20
21
  "main_branch": "main",
@@ -4,8 +4,6 @@ version = "0.0.1"
4
4
  description = "App manager entrypoint"
5
5
  requires-python = ">=3.10"
6
6
  dependencies = [
7
- "jinja2",
8
- "wexample-wex-addon-app==0.0.53",
9
7
  "wexample-wex-addon-dev-javascript==0.0.55",
10
8
  ]
11
9
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # js_pseudocode
1
+ # @wexample/js-pseudocode
2
2
 
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
 
5
5
  ## Table of Contents
6
6
 
@@ -111,7 +111,7 @@ Free to use in both personal and commercial projects.
111
111
 
112
112
  ## Integration in the Suite
113
113
 
114
- This package is part of the **Wexample Suite** — a collection of high-quality Python packages designed to work seamlessly together.
114
+ This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
115
115
 
116
116
  ### Related Packages
117
117
 
@@ -127,7 +127,7 @@ Refer to each package's documentation for specific version compatibility require
127
127
 
128
128
  ## Dependencies
129
129
 
130
- - js-yaml: <ConfigValue(type=str, value=4.1.0)>
130
+ - js-yaml: 4.1.0
131
131
 
132
132
 
133
133
  # About us
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wexample/js-pseudocode",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --loader ts-node/esm tests/constant_using_const.test.ts && node --loader ts-node/esm tests/function_basic.test.ts && node --loader ts-node/esm tests/function_complex.test.ts && node --loader ts-node/esm tests/class_basic_calculator.test.ts"
package/version.txt CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3