@nimbus-ds/webpack 1.0.0-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/CHANGELOG.md +16 -0
- package/README.md +17 -0
- package/package.json +30 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
This package is intended for internal use in generating builds of each design system package. It contains all the necessary settings and dependencies to optimize the creation of our builds.
|
|
4
|
+
|
|
5
|
+
## 2022-12-07 `1.0.0`
|
|
6
|
+
|
|
7
|
+
### 📚 3rd party library updates
|
|
8
|
+
|
|
9
|
+
- Added `@types/webpack@5.28.0`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
|
10
|
+
- Added `@vanilla-extract/webpack-plugin@2.2.0`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
|
11
|
+
- Added `dotenv@16.0.3`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
|
12
|
+
- Added `mini-css-extract-plugin@2.7.2`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
|
13
|
+
- Added `terser-webpack-plugin@5.3.6`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
|
14
|
+
- Added `typescript@4.9.3`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
|
15
|
+
- Added `webpack@5.75.0`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
|
16
|
+
- Added `webpack-merge@5.8.0`. ([#63](https://github.com/TiendaNube/nimbus-design-system/pull/63) by [@juniorconquista](https://github.com/juniorconquista))
|
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# `@nimbus-ds/webpack`
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@nimbus-ds/webpack)
|
|
4
|
+
|
|
5
|
+
This package is intended for internal use in generating builds of each design system package. It contains all the necessary settings and dependencies to optimize the creation of our builds.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
$ yarn add @nimbus-ds/webpack
|
|
11
|
+
# or
|
|
12
|
+
$ npm install @nimbus-ds/webpack
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
This is an internal utility, not intended for public usage.
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nimbus-ds/webpack",
|
|
3
|
+
"version": "1.0.0-rc.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"source": "src/index.ts",
|
|
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
|
+
"@types/webpack": "^5.28.0",
|
|
21
|
+
"@vanilla-extract/webpack-plugin": "^2.2.0",
|
|
22
|
+
"dotenv": "^16.0.3",
|
|
23
|
+
"mini-css-extract-plugin": "^2.7.2",
|
|
24
|
+
"terser-webpack-plugin": "^5.3.6",
|
|
25
|
+
"typescript": "^4.9.3",
|
|
26
|
+
"webpack": "^5.75.0",
|
|
27
|
+
"webpack-merge": "^5.8.0"
|
|
28
|
+
},
|
|
29
|
+
"stableVersion": "0.0.0"
|
|
30
|
+
}
|