@arc-e-tect/api-only-publisher 0.4.0 → 0.4.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.adoc +7 -5
- package/package.json +1 -1
package/README.adoc
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
:toclevels: 2
|
|
5
5
|
:icons: font
|
|
6
6
|
:source-highlighter: rouge
|
|
7
|
+
// The component versions this document describes; change them here only.
|
|
8
|
+
:api-only-publisher-version: 0.4.0
|
|
7
9
|
|
|
8
10
|
image:https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-API/actions/workflows/nvd-cache-refresh.yml/badge.svg[Vulnerability Scan,link=https://github.com/Arc-E-Tect/SoftwareEngineeringDoneRight-API/actions/workflows/nvd-cache-refresh.yml]
|
|
9
11
|
image:https://img.shields.io/npm/v/@arc-e-tect/api-only-publisher[npm,link=https://www.npmjs.com/package/@arc-e-tect/api-only-publisher]
|
|
@@ -75,7 +77,7 @@ npm install --save-dev --save-exact @arc-e-tect/api-only-publisher
|
|
|
75
77
|
----
|
|
76
78
|
|
|
77
79
|
.package.json
|
|
78
|
-
[source,json]
|
|
80
|
+
[source,json,subs="attributes+"]
|
|
79
81
|
----
|
|
80
82
|
{
|
|
81
83
|
"private": true,
|
|
@@ -83,7 +85,7 @@ npm install --save-dev --save-exact @arc-e-tect/api-only-publisher
|
|
|
83
85
|
"apionly": "api-only-publisher"
|
|
84
86
|
},
|
|
85
87
|
"devDependencies": {
|
|
86
|
-
"@arc-e-tect/api-only-publisher": "
|
|
88
|
+
"@arc-e-tect/api-only-publisher": "{api-only-publisher-version}"
|
|
87
89
|
}
|
|
88
90
|
}
|
|
89
91
|
----
|
|
@@ -109,10 +111,10 @@ Run it through the script, as `npm run apionly -- <command>`.
|
|
|
109
111
|
|
|
110
112
|
The fit for trying the tool, for scaffolding a library with `init`, and for a one-off command.
|
|
111
113
|
|
|
112
|
-
[source,console]
|
|
114
|
+
[source,console,subs="attributes+"]
|
|
113
115
|
----
|
|
114
|
-
npx @arc-e-tect/api-only-publisher
|
|
115
|
-
npx @arc-e-tect/api-only-publisher
|
|
116
|
+
npx @arc-e-tect/api-only-publisher@{api-only-publisher-version} init my-api-library
|
|
117
|
+
npx @arc-e-tect/api-only-publisher@{api-only-publisher-version} build -C my-api-library
|
|
116
118
|
----
|
|
117
119
|
|
|
118
120
|
* Nothing is added to the repository.
|
package/package.json
CHANGED