@itwin/build-tools 3.2.0-dev.9 → 3.2.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 CHANGED
@@ -1,6 +1,38 @@
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, 20 May 2022 13:10:54 GMT and should not be manually modified.
4
+
5
+ ## 3.2.0
6
+ Fri, 20 May 2022 13:10:54 GMT
7
+
8
+ ### Updates
9
+
10
+ - Add extension API generation
11
+
12
+ ## 3.1.3
13
+ Fri, 15 Apr 2022 13:49:25 GMT
14
+
15
+ _Version update only_
16
+
17
+ ## 3.1.2
18
+ Wed, 06 Apr 2022 22:27:56 GMT
19
+
20
+ _Version update only_
21
+
22
+ ## 3.1.1
23
+ Thu, 31 Mar 2022 15:55:48 GMT
24
+
25
+ _Version update only_
26
+
27
+ ## 3.1.0
28
+ Tue, 29 Mar 2022 20:53:46 GMT
29
+
30
+ _Version update only_
31
+
32
+ ## 3.0.3
33
+ Fri, 25 Mar 2022 15:10:01 GMT
34
+
35
+ _Version update only_
4
36
 
5
37
  ## 3.0.2
6
38
  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.0",
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.0",
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) {