@form8ion/javascript 1.1.3 → 2.0.0-alpha.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 +5 -11
- package/lib/index.cjs.js +1398 -11
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.es.js +1394 -13
- package/lib/index.es.js.map +1 -1
- package/package.json +29 -6
- package/templates/.eslintrc.yml +3 -0
- package/templates/example.mustache +3 -0
package/README.md
CHANGED
|
@@ -24,7 +24,6 @@ toolset
|
|
|
24
24
|
* [`decisions` __object__ (_optional_)](#decisions-object-optional)
|
|
25
25
|
* [`visibility` __string__ (_required_)](#visibility-string-required)
|
|
26
26
|
* [`vcs` __object__ (_required_)](#vcs-object-required)
|
|
27
|
-
* [`unitTestFrameworksSchema`](#unittestframeworksschema)
|
|
28
27
|
* [`questionNames`](#questionnames)
|
|
29
28
|
* [Contributing](#contributing)
|
|
30
29
|
* [Dependencies](#dependencies)
|
|
@@ -110,11 +109,6 @@ visibility of the project (`Public` or `Private`)
|
|
|
110
109
|
* `name` __string__ (_required_)
|
|
111
110
|
repository name
|
|
112
111
|
|
|
113
|
-
#### `unitTestFrameworksSchema`
|
|
114
|
-
|
|
115
|
-
[joi](https://hapi.dev/module/joi/) schema for the choices required for the
|
|
116
|
-
[unit-testing scaffolder](#scaffoldunittesting)
|
|
117
|
-
|
|
118
112
|
#### `questionNames`
|
|
119
113
|
|
|
120
114
|
Constants defining the question names for the prompts implemented in this
|
|
@@ -159,11 +153,11 @@ $ npm test
|
|
|
159
153
|
|
|
160
154
|
[semantic-release-link]: https://github.com/semantic-release/semantic-release
|
|
161
155
|
|
|
162
|
-
[semantic-release-badge]: https://img.shields.io/badge
|
|
156
|
+
[semantic-release-badge]: https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release
|
|
163
157
|
|
|
164
158
|
[renovate-link]: https://renovatebot.com
|
|
165
159
|
|
|
166
|
-
[renovate-badge]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg?logo=
|
|
160
|
+
[renovate-badge]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg?logo=renovatebot
|
|
167
161
|
|
|
168
162
|
[github-actions-ci-link]: https://github.com/form8ion/javascript/actions?query=workflow%3A%22Node.js+CI%22+branch%3Amaster
|
|
169
163
|
|
|
@@ -175,9 +169,9 @@ $ npm test
|
|
|
175
169
|
|
|
176
170
|
[npm-link]: https://www.npmjs.com/package/@form8ion/javascript
|
|
177
171
|
|
|
178
|
-
[npm-badge]: https://img.shields.io/npm/v/@form8ion/javascript.svg
|
|
172
|
+
[npm-badge]: https://img.shields.io/npm/v/@form8ion/javascript.svg?logo=npm
|
|
179
173
|
|
|
180
|
-
[node-badge]: https://img.shields.io/node/v/@form8ion/javascript.svg
|
|
174
|
+
[node-badge]: https://img.shields.io/node/v/@form8ion/javascript.svg?logo=node.js
|
|
181
175
|
|
|
182
176
|
[runkit-link]: https://npm.runkit.com/@form8ion/javascript
|
|
183
177
|
|
|
@@ -185,4 +179,4 @@ $ npm test
|
|
|
185
179
|
|
|
186
180
|
[coverage-link]: https://codecov.io/github/form8ion/javascript
|
|
187
181
|
|
|
188
|
-
[coverage-badge]: https://img.shields.io/codecov/c/github/form8ion/javascript.svg
|
|
182
|
+
[coverage-badge]: https://img.shields.io/codecov/c/github/form8ion/javascript.svg?logo=codecov
|