@mservices-tech/scripts 3.2.3-scripts-release-refactor-rc.0 → 3.2.3-scripts-release-refactor-rc.1
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/README.md +4 -4
- package/buildUsingEsbuild/buildUsingEsbuild.js +32 -33
- package/copy_package_build_to_project/copy_package_build_to_project.sh +1 -1
- package/generateIndexFilesFromTemplate/generateIndexFilesFromTemplate.js +116 -117
- package/package.json +1 -1
- package/removeGitHashesFromMarkdownFile/removeGitHashesFromMarkdownFile.js +32 -33
- package/runShellScript/runShellScript.js +32 -33
- package/testIncorrectValues/testIncorrectValues.js +35 -35
- package/utils.sh +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @mservices-tech/scripts
|
|
2
2
|
|
|
3
3
|
A collection of generic utility scripts. Useful for various development and maintenance tasks.
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ A collection of generic utility scripts. Useful for various development and main
|
|
|
7
7
|
Add the following entry into `devDependencies` in target `package.json` via:
|
|
8
8
|
|
|
9
9
|
```console
|
|
10
|
-
yarn add --dev @
|
|
10
|
+
yarn add --dev @mservices-tech/scripts
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Quick start
|
|
@@ -15,7 +15,7 @@ yarn add --dev @mservicestech/scripts
|
|
|
15
15
|
All the scripts provide individual documentation entries available via the `--help` flag:
|
|
16
16
|
|
|
17
17
|
```console
|
|
18
|
-
./node_modules/@
|
|
18
|
+
./node_modules/@mservices-tech/scripts/example/example.sh --help
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
## Common utilities
|
|
@@ -23,7 +23,7 @@ All the scripts provide individual documentation entries available via the `--he
|
|
|
23
23
|
The package provides common scripting utilities which help in writing customized workspace-specific tooling:
|
|
24
24
|
|
|
25
25
|
```console
|
|
26
|
-
source ./node_modules/@
|
|
26
|
+
source ./node_modules/@mservices-tech/scripts/utils.sh
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## TypeScript utilities
|