@planningcenter/tapestry-migration-cli 2.5.0-rc.6 → 2.5.0-rc.8

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.
Files changed (2) hide show
  1. package/README.md +6 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -19,7 +19,8 @@ Consider these steps to safely migrate your components:
19
19
 
20
20
  1. **Prepare your workspace** (recommended)
21
21
  - Commit your current changes or create a new branch
22
- - This allows you to easily review or revert changes if needed
22
+ - This allows you to easily review or revert changes if needed
23
+ - Run your JS/TS code formatter (like Prettier) and commit any formatting changes if needed
23
24
 
24
25
  2. **Create a theme file** (important for button migrations)
25
26
  - Create a CommonJS file called `theme.js` at the root of your project
@@ -97,7 +98,10 @@ Consider these steps to safely migrate your components:
97
98
  - Manually verify migrated components work as expected
98
99
  - Pay special attention to any components with TODO comments
99
100
 
100
- 8. **Commit your changes**
101
+ 8. **Format your code**
102
+ - Run your JS/TS code formatter (like Prettier) to ensure consistent code formatting
103
+
104
+ 9. **Commit your changes**
101
105
  - Commit the automated migrations
102
106
  - Handle unsupported props in separate commits if needed
103
107
  - Once comfortable, migrate larger scopes incrementally
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planningcenter/tapestry-migration-cli",
3
- "version": "2.5.0-rc.6",
3
+ "version": "2.5.0-rc.8",
4
4
  "description": "CLI tool for Tapestry migrations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -51,5 +51,5 @@
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "gitHead": "d56a9e8e045d5f27b0c586711ddcda330d56d241"
54
+ "gitHead": "238d4b93c6cedc7103120c5eca46626eba3910ad"
55
55
  }