@storm-software/linting-tools 1.12.11 → 1.12.13
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 +19 -0
- package/README.md +27 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## [1.12.12](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.12.11...linting-tools-v1.12.12) (2023-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Update the path separators in api-extractor parameters ([59a0908](https://github.com/storm-software/storm-ops/commit/59a09086e48af2f8aff9297878c3cd436eaf7837))
|
|
7
|
+
|
|
8
|
+
## [1.12.11](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.12.10...linting-tools-v1.12.11) (2023-11-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Add back the `declarationDir` value to the compilerOptions for dts build ([b02402d](https://github.com/storm-software/storm-ops/commit/b02402d6ef3c57b217771b2f086058c329c0b5af))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Reverts
|
|
17
|
+
|
|
18
|
+
* **workspace-tools:** Revert tsup patch back to previous version before updates to api-extractor ([c8a83f1](https://github.com/storm-software/storm-ops/commit/c8a83f1ca6739248576bf81d791d02d02a09acb4))
|
|
19
|
+
|
|
1
20
|
## [1.12.10](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.12.9...linting-tools-v1.12.10) (2023-11-29)
|
|
2
21
|
|
|
3
22
|
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
16
16
|
|
|
17
17
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
|
|
18
18
|
|
|
19
|
-
[](https://prettier.io/)
|
|
20
20
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
21
21
|
|
|
22
22
|
<h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
|
|
@@ -44,6 +44,32 @@ This package combines various linting tools used to validate syntax, enforce des
|
|
|
44
44
|
|
|
45
45
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
46
46
|
|
|
47
|
+
## Installing
|
|
48
|
+
|
|
49
|
+
Using [pnpm](http://pnpm.io):
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
pnpm add -D @storm-software/linting-tools
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
<details>
|
|
56
|
+
<summary>Using npm</summary>
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
npm install -D @storm-software/linting-tools
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
</details>
|
|
63
|
+
|
|
64
|
+
<details>
|
|
65
|
+
<summary>Using yarn</summary>
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
yarn add -D @storm-software/linting-tools
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
</details>
|
|
72
|
+
|
|
47
73
|
## Building
|
|
48
74
|
|
|
49
75
|
Run `nx build linting-tools` to build the library.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"keywords": [
|