@itwin/build-tools 3.2.0-dev.9 → 3.2.2

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 CHANGED
@@ -1,6 +1,48 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Thu, 10 Mar 2022 21:18:13 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 10 Jun 2022 16:11:36 GMT and should not be manually modified.
4
+
5
+ ## 3.2.2
6
+ Fri, 10 Jun 2022 16:11:36 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 3.2.1
11
+ Tue, 07 Jun 2022 15:02:56 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 3.2.0
16
+ Fri, 20 May 2022 13:10:54 GMT
17
+
18
+ ### Updates
19
+
20
+ - Add extension API generation
21
+
22
+ ## 3.1.3
23
+ Fri, 15 Apr 2022 13:49:25 GMT
24
+
25
+ _Version update only_
26
+
27
+ ## 3.1.2
28
+ Wed, 06 Apr 2022 22:27:56 GMT
29
+
30
+ _Version update only_
31
+
32
+ ## 3.1.1
33
+ Thu, 31 Mar 2022 15:55:48 GMT
34
+
35
+ _Version update only_
36
+
37
+ ## 3.1.0
38
+ Tue, 29 Mar 2022 20:53:46 GMT
39
+
40
+ _Version update only_
41
+
42
+ ## 3.0.3
43
+ Fri, 25 Mar 2022 15:10:01 GMT
44
+
45
+ _Version update only_
4
46
 
5
47
  ## 3.0.2
6
48
  Thu, 10 Mar 2022 21:18:13 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "3.2.0-dev.9",
3
+ "version": "3.2.2",
4
4
  "description": "Bentley build tools",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -38,8 +38,8 @@
38
38
  "yargs": "^16.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@itwin/eslint-plugin": "3.2.0-dev.9",
42
- "@types/node": "14.14.31",
41
+ "@itwin/eslint-plugin": "3.2.2",
42
+ "@types/node": "16.11.7",
43
43
  "eslint": "^7.11.0"
44
44
  },
45
45
  "eslintConfig": {
@@ -25,6 +25,10 @@ const validTags = [
25
25
  "deprecated",
26
26
  "internal",
27
27
  "public",
28
+
29
+ // Following flags are added for Extension tooling (public-extension-api)
30
+ "extensions",
31
+ "preview"
28
32
  ];
29
33
 
30
34
  function validateTags(path) {