@knapsack/babel-config 4.70.0--canary.4433.133de0f.0 → 4.70.0--canary.4513.12c8d13.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,98 @@
1
+ # v4.69.13 (Thu Sep 26 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - update design src user flow to be async [#4739](https://github.com/knapsack-labs/app-monorepo/pull/4739) ([@mabry1985](https://github.com/mabry1985))
6
+ - Merge branch 'latest' into feature/ksp-5512-create-add-design-src-file-async-mutation ([@mabry1985](https://github.com/mabry1985))
7
+
8
+ #### 🏠 Internal
9
+
10
+ - refactors user flow for updating design src files [#4769](https://github.com/knapsack-labs/app-monorepo/pull/4769) ([@mabry1985](https://github.com/mabry1985))
11
+
12
+ #### Authors: 1
13
+
14
+ - Josh Mabry ([@mabry1985](https://github.com/mabry1985))
15
+
16
+ ---
17
+
18
+ # v4.69.12 (Thu Sep 26 2024)
19
+
20
+ #### 🐛 Bug Fix
21
+
22
+ - Merge branch 'latest' into feature/ksp-5560-replace-schema-forms-in-content-blocks ([@GormanDesign](https://github.com/GormanDesign))
23
+
24
+ #### 🏠 Internal
25
+
26
+ - Update deprecated packages - @babel/plugins [#4813](https://github.com/knapsack-labs/app-monorepo/pull/4813) ([@greylabel](https://github.com/greylabel))
27
+
28
+ #### Authors: 2
29
+
30
+ - Grant Gaudet ([@greylabel](https://github.com/greylabel))
31
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
32
+
33
+ ---
34
+
35
+ # v4.69.11 (Fri Sep 20 2024)
36
+
37
+ #### 🏠 Internal
38
+
39
+ - adds select all option to exclude patterns filters [#4803](https://github.com/knapsack-labs/app-monorepo/pull/4803) ([@GormanDesign](https://github.com/GormanDesign))
40
+
41
+ #### Authors: 1
42
+
43
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
44
+
45
+ ---
46
+
47
+ # v4.69.9 (Sat Sep 14 2024)
48
+
49
+ #### 🏠 Internal
50
+
51
+ - update template stage ui [#4763](https://github.com/knapsack-labs/app-monorepo/pull/4763) ([@GormanDesign](https://github.com/GormanDesign))
52
+ - add spacing under form feedback banner [#4747](https://github.com/knapsack-labs/app-monorepo/pull/4747) ([@GormanDesign](https://github.com/GormanDesign))
53
+
54
+ #### Authors: 1
55
+
56
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
57
+
58
+ ---
59
+
60
+ # v4.69.7 (Wed Sep 11 2024)
61
+
62
+ #### 🐛 Bug Fix
63
+
64
+ - Merge branch 'latest' into feature/ksp-5497-setup-status-id-in-client ([@mabry1985](https://github.com/mabry1985))
65
+
66
+ #### 🏠 Internal
67
+
68
+ - fix(deps): update babel [#4714](https://github.com/knapsack-labs/app-monorepo/pull/4714) ([@renovate[bot]](https://github.com/renovate[bot]))
69
+ - fixes schema form select appearance [#4700](https://github.com/knapsack-labs/app-monorepo/pull/4700) ([@GormanDesign](https://github.com/GormanDesign))
70
+ - add scroll indicator to popover [#4697](https://github.com/knapsack-labs/app-monorepo/pull/4697) ([@GormanDesign](https://github.com/GormanDesign))
71
+
72
+ #### Authors: 3
73
+
74
+ - [@renovate[bot]](https://github.com/renovate[bot])
75
+ - Josh Mabry ([@mabry1985](https://github.com/mabry1985))
76
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
77
+
78
+ ---
79
+
80
+ # v4.69.6 (Fri Sep 06 2024)
81
+
82
+ #### 🐛 Bug Fix
83
+
84
+ - Merge branch 'latest' into feature/ksp-5458-anchor-links-not-jumping-to-the-right-spot ([@GormanDesign](https://github.com/GormanDesign))
85
+
86
+ #### 🏠 Internal
87
+
88
+ - restores hash link handling [#4637](https://github.com/knapsack-labs/app-monorepo/pull/4637) ([@GormanDesign](https://github.com/GormanDesign))
89
+
90
+ #### Authors: 1
91
+
92
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
93
+
94
+ ---
95
+
1
96
  # v4.69.2 (Fri Aug 30 2024)
2
97
 
3
98
  #### 🐛 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.4433.133de0f.0",
4
+ "version": "4.70.0--canary.4513.12c8d13.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.4433.133de0f.0",
27
+ "@babel/runtime": "^7.25.6",
28
+ "@knapsack/file-utils": "4.70.0--canary.4513.12c8d13.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.4433.133de0f.0",
33
- "@knapsack/typescript-config-starter": "4.70.0--canary.4433.133de0f.0",
32
+ "@knapsack/eslint-config-starter": "4.70.0--canary.4513.12c8d13.0",
33
+ "@knapsack/typescript-config-starter": "4.70.0--canary.4513.12c8d13.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": "133de0f024277534b2d012833b847030e6dcc099"
46
+ "gitHead": "12c8d1378411614ad6f84e50e3721e5eb58243f4"
47
47
  }