@everystack/cli 0.2.16 → 0.2.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everystack/cli",
3
- "version": "0.2.16",
3
+ "version": "0.2.17",
4
4
  "description": "CLI and OTA updates for Expo apps on everystack",
5
5
  "license": "AGPL-3.0-only",
6
6
  "publishConfig": {
@@ -3,7 +3,7 @@ import fs from 'fs/promises';
3
3
  import path from 'path';
4
4
 
5
5
  export function exportApp(platform?: string): Promise<void> {
6
- const args = ['expo', 'export', '--output-dir', 'dist'];
6
+ const args = ['expo', 'export', '--output-dir', 'dist', '--clear'];
7
7
  if (platform) args.push('--platform', platform);
8
8
 
9
9
  return new Promise((resolve, reject) => {