@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
|
@@ -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(
|
|
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(
|
|
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",
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @wexample/js-pseudocode
|
|
2
2
|
|
|
3
|
-
Version: 0.1.
|
|
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
|
|
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:
|
|
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.
|
|
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.
|
|
1
|
+
0.1.3
|