@knapsack/babel-config 4.70.0--canary.4628.1068e46.0 → 4.70.0--canary.4854.b1d79a8.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,90 @@
1
+ # v4.69.11 (Fri Sep 20 2024)
2
+
3
+ #### 🏠 Internal
4
+
5
+ - adds select all option to exclude patterns filters [#4803](https://github.com/knapsack-labs/app-monorepo/pull/4803) ([@GormanDesign](https://github.com/GormanDesign))
6
+
7
+ #### Authors: 1
8
+
9
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
10
+
11
+ ---
12
+
13
+ # v4.69.9 (Sat Sep 14 2024)
14
+
15
+ #### 🏠 Internal
16
+
17
+ - update template stage ui [#4763](https://github.com/knapsack-labs/app-monorepo/pull/4763) ([@GormanDesign](https://github.com/GormanDesign))
18
+ - add spacing under form feedback banner [#4747](https://github.com/knapsack-labs/app-monorepo/pull/4747) ([@GormanDesign](https://github.com/GormanDesign))
19
+
20
+ #### Authors: 1
21
+
22
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
23
+
24
+ ---
25
+
26
+ # v4.69.7 (Wed Sep 11 2024)
27
+
28
+ #### 🐛 Bug Fix
29
+
30
+ - Merge branch 'latest' into feature/ksp-5497-setup-status-id-in-client ([@mabry1985](https://github.com/mabry1985))
31
+
32
+ #### 🏠 Internal
33
+
34
+ - fix(deps): update babel [#4714](https://github.com/knapsack-labs/app-monorepo/pull/4714) ([@renovate[bot]](https://github.com/renovate[bot]))
35
+ - fixes schema form select appearance [#4700](https://github.com/knapsack-labs/app-monorepo/pull/4700) ([@GormanDesign](https://github.com/GormanDesign))
36
+ - add scroll indicator to popover [#4697](https://github.com/knapsack-labs/app-monorepo/pull/4697) ([@GormanDesign](https://github.com/GormanDesign))
37
+
38
+ #### Authors: 3
39
+
40
+ - [@renovate[bot]](https://github.com/renovate[bot])
41
+ - Josh Mabry ([@mabry1985](https://github.com/mabry1985))
42
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
43
+
44
+ ---
45
+
46
+ # v4.69.6 (Fri Sep 06 2024)
47
+
48
+ #### 🐛 Bug Fix
49
+
50
+ - Merge branch 'latest' into feature/ksp-5458-anchor-links-not-jumping-to-the-right-spot ([@GormanDesign](https://github.com/GormanDesign))
51
+
52
+ #### 🏠 Internal
53
+
54
+ - restores hash link handling [#4637](https://github.com/knapsack-labs/app-monorepo/pull/4637) ([@GormanDesign](https://github.com/GormanDesign))
55
+
56
+ #### Authors: 1
57
+
58
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
59
+
60
+ ---
61
+
62
+ # v4.69.2 (Fri Aug 30 2024)
63
+
64
+ #### 🐛 Bug Fix
65
+
66
+ - add error info [#4628](https://github.com/knapsack-labs/app-monorepo/pull/4628) ([@EvanLovely](https://github.com/EvanLovely) [@mabry1985](https://github.com/mabry1985))
67
+ - Merge branch 'latest' into EvanLovely-patch-24 ([@mabry1985](https://github.com/mabry1985))
68
+
69
+ #### Authors: 2
70
+
71
+ - Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
72
+ - Josh Mabry ([@mabry1985](https://github.com/mabry1985))
73
+
74
+ ---
75
+
76
+ # v4.69.1 (Fri Aug 30 2024)
77
+
78
+ #### 🐛 Bug Fix
79
+
80
+ - Merge branch 'latest' into feature/ksp-5460-nested-menu-item-is-finicky ([@GormanDesign](https://github.com/GormanDesign))
81
+
82
+ #### Authors: 1
83
+
84
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
85
+
86
+ ---
87
+
1
88
  # v4.68.12 (Thu Aug 29 2024)
2
89
 
3
90
  #### 🐛 Bug Fix
package/get-config.js CHANGED
@@ -49,16 +49,16 @@ function getConfig({
49
49
  useESModules,
50
50
  },
51
51
  ],
52
- require.resolve('@babel/plugin-proposal-object-rest-spread'),
53
- require.resolve('@babel/plugin-proposal-nullish-coalescing-operator'),
52
+ require.resolve('@babel/plugin-transform-object-rest-spread'),
53
+ require.resolve('@babel/plugin-transform-nullish-coalescing-operator'),
54
54
  [
55
55
  require.resolve('@babel/plugin-proposal-decorators'),
56
56
  {
57
57
  decoratorsBeforeExport: true,
58
58
  },
59
59
  ],
60
- require.resolve('@babel/plugin-proposal-class-properties'),
61
- require.resolve('@babel/plugin-proposal-optional-chaining'),
60
+ require.resolve('@babel/plugin-transform-class-properties'),
61
+ require.resolve('@babel/plugin-transform-optional-chaining'),
62
62
  ].filter(Boolean),
63
63
  };
64
64
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knapsack/babel-config",
3
3
  "description": "Babel config and deps.",
4
- "version": "4.70.0--canary.4628.1068e46.0",
4
+ "version": "4.70.0--canary.4854.b1d79a8.0",
5
5
  "main": "index.js",
6
6
  "sideEffects": false,
7
7
  "scripts": {
@@ -12,25 +12,25 @@
12
12
  },
13
13
  "author": "Knapsack (https://www.knapsack.cloud)",
14
14
  "dependencies": {
15
- "@babel/cli": "^7.24.8",
15
+ "@babel/cli": "^7.25.6",
16
16
  "@babel/core": "^7.25.2",
17
- "@babel/plugin-proposal-class-properties": "^7.18.6",
18
17
  "@babel/plugin-proposal-decorators": "^7.24.7",
19
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
20
- "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
21
- "@babel/plugin-proposal-optional-chaining": "^7.21.0",
22
18
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
23
- "@babel/plugin-transform-runtime": "^7.24.7",
24
- "@babel/preset-env": "^7.25.3",
19
+ "@babel/plugin-transform-class-properties": "^7.25.4",
20
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
21
+ "@babel/plugin-transform-object-rest-spread": "^7.24.7",
22
+ "@babel/plugin-transform-optional-chaining": "^7.24.8",
23
+ "@babel/plugin-transform-runtime": "^7.25.4",
24
+ "@babel/preset-env": "^7.25.4",
25
25
  "@babel/preset-react": "^7.24.7",
26
26
  "@babel/preset-typescript": "^7.24.7",
27
- "@babel/runtime": "^7.25.0",
28
- "@knapsack/file-utils": "4.70.0--canary.4628.1068e46.0",
27
+ "@babel/runtime": "^7.25.6",
28
+ "@knapsack/file-utils": "4.70.0--canary.4854.b1d79a8.0",
29
29
  "babel-plugin-transform-async-to-promises": "^0.8.18"
30
30
  },
31
31
  "devDependencies": {
32
- "@knapsack/eslint-config-starter": "4.70.0--canary.4628.1068e46.0",
33
- "@knapsack/typescript-config-starter": "4.70.0--canary.4628.1068e46.0",
32
+ "@knapsack/eslint-config-starter": "4.70.0--canary.4854.b1d79a8.0",
33
+ "@knapsack/typescript-config-starter": "4.70.0--canary.4854.b1d79a8.0",
34
34
  "eslint": "^8.57.0",
35
35
  "typescript": "^5.5.4"
36
36
  },
@@ -43,5 +43,5 @@
43
43
  "directory": "deprecated/babel-config",
44
44
  "type": "git"
45
45
  },
46
- "gitHead": "1068e46a07492f9079158ec81b2ccb566a234516"
46
+ "gitHead": "b1d79a8caffe3537b921ff76bae2f2e8bcabbc43"
47
47
  }