@itwin/build-tools 3.2.0-dev.8 → 3.2.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 CHANGED
@@ -1,6 +1,48 @@
1
1
  # Change Log - @itwin/build-tools
2
2
 
3
- This log was last generated on Thu, 24 Feb 2022 15:26:55 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 07 Jun 2022 15:02:56 GMT and should not be manually modified.
4
+
5
+ ## 3.2.1
6
+ Tue, 07 Jun 2022 15:02:56 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 3.2.0
11
+ Fri, 20 May 2022 13:10:54 GMT
12
+
13
+ ### Updates
14
+
15
+ - Add extension API generation
16
+
17
+ ## 3.1.3
18
+ Fri, 15 Apr 2022 13:49:25 GMT
19
+
20
+ _Version update only_
21
+
22
+ ## 3.1.2
23
+ Wed, 06 Apr 2022 22:27:56 GMT
24
+
25
+ _Version update only_
26
+
27
+ ## 3.1.1
28
+ Thu, 31 Mar 2022 15:55:48 GMT
29
+
30
+ _Version update only_
31
+
32
+ ## 3.1.0
33
+ Tue, 29 Mar 2022 20:53:46 GMT
34
+
35
+ _Version update only_
36
+
37
+ ## 3.0.3
38
+ Fri, 25 Mar 2022 15:10:01 GMT
39
+
40
+ _Version update only_
41
+
42
+ ## 3.0.2
43
+ Thu, 10 Mar 2022 21:18:13 GMT
44
+
45
+ _Version update only_
4
46
 
5
47
  ## 3.0.1
6
48
  Thu, 24 Feb 2022 15:26:55 GMT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/build-tools",
3
- "version": "3.2.0-dev.8",
3
+ "version": "3.2.1",
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.8",
42
- "@types/node": "14.14.31",
41
+ "@itwin/eslint-plugin": "3.2.1",
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) {