@regardio/dev 1.17.0 → 1.18.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.
@@ -94,6 +94,6 @@ git('pull', '--ff-only', 'origin', 'staging');
94
94
  git('merge', '--ff-only', 'production');
95
95
  git('push', 'origin', 'staging');
96
96
  git('checkout', 'main');
97
- git('pull', '--ff-only', 'origin', 'main');
97
+ git('push', 'origin', 'main');
98
98
  console.log(`\n✅ Shipped ${packageName}@${newVersion} to production`);
99
99
  console.log('You are on main and ready to keep working.');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "@regardio/dev",
4
- "version": "1.17.0",
4
+ "version": "1.18.0",
5
5
  "private": false,
6
6
  "description": "Regardio developer tooling for testing, linting, and build workflows",
7
7
  "keywords": [
@@ -90,7 +90,7 @@
90
90
  "typecheck": "tsc --noEmit"
91
91
  },
92
92
  "dependencies": {
93
- "@biomejs/biome": "2.4.7",
93
+ "@biomejs/biome": "2.4.8",
94
94
  "@commitlint/cli": "20.5.0",
95
95
  "@commitlint/config-conventional": "20.5.0",
96
96
  "@playwright/test": "1.58.2",
@@ -200,10 +200,10 @@ git('merge', '--ff-only', 'production');
200
200
  git('push', 'origin', 'staging');
201
201
 
202
202
  // ---------------------------------------------------------------------------
203
- // Return to main and sync
203
+ // Return to main and push
204
204
  // ---------------------------------------------------------------------------
205
205
  git('checkout', 'main');
206
- git('pull', '--ff-only', 'origin', 'main');
206
+ git('push', 'origin', 'main');
207
207
 
208
208
  console.log(`\n✅ Shipped ${packageName}@${newVersion} to production`);
209
209
  console.log('You are on main and ready to keep working.');