@nimbus-ds/scripts 1.0.0
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/CHANGELOG.md +14 -0
- package/README.md +17 -0
- package/package.json +23 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
This package is intended for internal use in generating custom script builds at design system build time.
|
|
4
|
+
|
|
5
|
+
## 2023-03-19 `1.0.0`
|
|
6
|
+
|
|
7
|
+
### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added Docgen class for generating documentation from typing components and subcomponents. ([#126](https://github.com/TiendaNube/nimbus-design-system/pull/126) by [@juniorconquista](https://github.com/juniorconquista))
|
|
10
|
+
|
|
11
|
+
### 📚 3rd party library updates
|
|
12
|
+
|
|
13
|
+
- Added `change-case@4.1.2`. ([#126](https://github.com/TiendaNube/nimbus-design-system/pull/126) by [@juniorconquista](https://github.com/juniorconquista))
|
|
14
|
+
- Added `typescript-json-schema@0.55.0`. ([#126](https://github.com/TiendaNube/nimbus-design-system/pull/126) by [@juniorconquista](https://github.com/juniorconquista))
|
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# `@nimbus-ds/scripts`
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@nimbus-ds/scripts)
|
|
4
|
+
|
|
5
|
+
This package is intended for internal use in generating custom script builds at design system build time.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
$ yarn add @nimbus-ds/scripts
|
|
11
|
+
# or
|
|
12
|
+
$ npm install @nimbus-ds/scripts
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
This is an internal utility, not intended for public usage.
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nimbus-ds/scripts",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"README.md"
|
|
9
|
+
],
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"homepage": "https://nimbus.nuvemshop.com.br/documentation",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/TiendaNube/nimbus-design-system.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/TiendaNube/nimbus-design-system/issues"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"change-case": "^4.1.2",
|
|
21
|
+
"typescript-json-schema": "^0.55.0"
|
|
22
|
+
}
|
|
23
|
+
}
|