@fluentui/react-context-selector 9.1.18 → 9.1.19

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.json CHANGED
@@ -2,7 +2,36 @@
2
2
  "name": "@fluentui/react-context-selector",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 17 Apr 2023 17:50:13 GMT",
5
+ "date": "Fri, 12 May 2023 20:22:53 GMT",
6
+ "tag": "@fluentui/react-context-selector_v9.1.19",
7
+ "version": "9.1.19",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "author": "martinhochel@microsoft.com",
12
+ "package": "@fluentui/react-context-selector",
13
+ "commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e",
14
+ "comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works"
15
+ }
16
+ ],
17
+ "patch": [
18
+ {
19
+ "author": "olfedias@microsoft.com",
20
+ "package": "@fluentui/react-context-selector",
21
+ "commit": "c28decb23d191a0daaaf6d5d1832429715102129",
22
+ "comment": "chore: exclude .swcrc from being published"
23
+ },
24
+ {
25
+ "author": "beachball",
26
+ "package": "@fluentui/react-context-selector",
27
+ "comment": "Bump @fluentui/react-utilities to v9.8.1",
28
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
29
+ }
30
+ ]
31
+ }
32
+ },
33
+ {
34
+ "date": "Mon, 17 Apr 2023 17:54:02 GMT",
6
35
  "tag": "@fluentui/react-context-selector_v9.1.18",
7
36
  "version": "9.1.18",
8
37
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,22 @@
1
1
  # Change Log - @fluentui/react-context-selector
2
2
 
3
- This log was last generated on Mon, 17 Apr 2023 17:50:13 GMT and should not be manually modified.
3
+ This log was last generated on Fri, 12 May 2023 20:22:53 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.1.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-context-selector_v9.1.19)
8
+
9
+ Fri, 12 May 2023 20:22:53 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-context-selector_v9.1.18..@fluentui/react-context-selector_v9.1.19)
11
+
12
+ ### Patches
13
+
14
+ - chore: exclude .swcrc from being published ([PR #27740](https://github.com/microsoft/fluentui/pull/27740) by olfedias@microsoft.com)
15
+ - Bump @fluentui/react-utilities to v9.8.1 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
16
+
7
17
  ## [9.1.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-context-selector_v9.1.18)
8
18
 
9
- Mon, 17 Apr 2023 17:50:13 GMT
19
+ Mon, 17 Apr 2023 17:54:02 GMT
10
20
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-context-selector_v9.1.17..@fluentui/react-context-selector_v9.1.18)
11
21
 
12
22
  ### Patches
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-context-selector",
3
- "version": "9.1.18",
3
+ "version": "9.1.19",
4
4
  "description": "React useContextSelector hook in userland",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -27,7 +27,7 @@
27
27
  "@fluentui/scripts-tasks": "*"
28
28
  },
29
29
  "dependencies": {
30
- "@fluentui/react-utilities": "^9.8.0",
30
+ "@fluentui/react-utilities": "^9.8.1",
31
31
  "@swc/helpers": "^0.4.14"
32
32
  },
33
33
  "peerDependencies": {
package/.swcrc DELETED
@@ -1,30 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/swcrc",
3
- "exclude": [
4
- "/testing",
5
- "/**/*.cy.ts",
6
- "/**/*.cy.tsx",
7
- "/**/*.spec.ts",
8
- "/**/*.spec.tsx",
9
- "/**/*.test.ts",
10
- "/**/*.test.tsx"
11
- ],
12
- "jsc": {
13
- "parser": {
14
- "syntax": "typescript",
15
- "tsx": true,
16
- "decorators": false,
17
- "dynamicImport": false
18
- },
19
- "externalHelpers": true,
20
- "transform": {
21
- "react": {
22
- "runtime": "classic",
23
- "useSpread": true
24
- }
25
- },
26
- "target": "es2019"
27
- },
28
- "minify": false,
29
- "sourceMaps": true
30
- }