@storm-software/linting-tools 1.12.14 → 1.13.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/package.json +1 -1
- package/tsconfig/tsconfig.root.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.12.15](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.12.14...linting-tools-v1.12.15) (2023-11-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Update input file path for api-extractor ([7750f15](https://github.com/storm-software/storm-ops/commit/7750f151de20da36ab72c0b7f98df415c833704a))
|
|
7
|
+
|
|
8
|
+
## [1.12.14](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.12.13...linting-tools-v1.12.14) (2023-11-30)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Resolved bad reference to path ([622c842](https://github.com/storm-software/storm-ops/commit/622c84247119570a469d2dc802a3317d44a17bb0))
|
|
14
|
+
|
|
1
15
|
## [1.12.13](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.12.12...linting-tools-v1.12.13) (2023-11-30)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
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": [
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"noFallthroughCasesInSwitch": true,
|
|
22
22
|
"allowImportingTsExtensions": true,
|
|
23
23
|
"importHelpers": true,
|
|
24
|
-
"experimentalDecorators":
|
|
24
|
+
"experimentalDecorators": true,
|
|
25
|
+
"emitDecoratorMetadata": true,
|
|
25
26
|
"target": "esnext",
|
|
26
27
|
"module": "esnext",
|
|
27
28
|
"lib": ["esnext", "dom", "dom.iterable"],
|