Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions DEPLOYMENT_READY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
## ✅ Build Status: READY FOR DEPLOYMENT

### 📁 Files Ready for Release:
- `dist/main.js` - Plugin code (enhanced)
- `dist/manifest.json` - Plugin manifest v2.0.0
- `dist/styles.css` - Original styles
- `dist/styles_modern.css` - Enhanced modern styles (15KB)
- `build/main.js` - Plugin code (enhanced)
- `build/manifest.json` - Plugin manifest v2.0.0
- `build/styles.css` - Original styles
- `build/styles_modern.css` - Enhanced modern styles (15KB)
- `RELEASE_NOTES_v2.0.0.md` - Detailed release notes

### 🎯 What's Been Enhanced:
Expand Down Expand Up @@ -44,7 +44,7 @@
```

#### Manual Deployment:
1. Upload files from `dist/` folder to GitHub release
1. Upload files from `build/` folder to GitHub release
2. Tag as v2.0.0
3. Include `RELEASE_NOTES_v2.0.0.md` in release description
4. Announce the enhanced version to users
Expand Down
12 changes: 6 additions & 6 deletions RELEASE_AUTOMATION_SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@ npm run release

📌 Version: 2.2.0
🏷️ Tag: v2.2.0
📂 Build output: dist/
📂 Build output: build/

📦 Release files:
- dist/main.js
- dist/manifest.json
- dist/styles.css
- dist/styles_modern.css
- build/main.js
- build/manifest.json
- build/styles.css
- build/styles_modern.css

🔗 GitHub: https://github.com/frostmute/make-it-rain/releases/tag/v2.2.0

Expand All @@ -176,7 +176,7 @@ npm run release
The release includes all built files:

```
dist/
build/
├── main.js (730 KB - Compiled plugin)
├── manifest.json (380 B - Plugin metadata)
├── styles.css (26 KB - Main styles)
Expand Down
24 changes: 12 additions & 12 deletions RELEASE_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ npm run build
```
- Compiles TypeScript
- Bundles with esbuild
- Outputs to `dist/` folder
- Outputs to `build/` folder

### Step 2: Stage Changes
```bash
git add -A
```
- Stages all modified files
- Includes dist/, manifest.json, versions.json, etc.
- Includes build/, manifest.json, versions.json, etc.

### Step 3: Commit
```bash
Expand Down Expand Up @@ -87,13 +87,13 @@ When you run `npm run release`, you'll see:

📌 Version: 2.2.0
🏷️ Tag: v2.2.0
📂 Build output: dist/
📂 Build output: build/

📦 Release files:
- dist/main.js
- dist/manifest.json
- dist/styles.css
- dist/styles_modern.css
- build/main.js
- build/manifest.json
- build/styles.css
- build/styles_modern.css

🔗 GitHub: https://github.com/frostmute/make-it-rain/releases/tag/v2.2.0

Expand Down Expand Up @@ -138,7 +138,7 @@ git push origin --tags
3. Select tag: `v2.2.0`
4. Title: `Release v2.2.0`
5. Description: Copy from `RELEASE_NOTES_v2.2.0.md`
6. Upload files from `dist/` folder:
6. Upload files from `build/` folder:
- main.js
- manifest.json
- styles.css
Expand Down Expand Up @@ -222,10 +222,10 @@ jobs:
- uses: softprops/action-gh-release@v1
with:
files: |
dist/main.js
dist/manifest.json
dist/styles.css
dist/styles_modern.css
build/main.js
build/manifest.json
build/styles.css
build/styles_modern.css
```

## Troubleshooting
Expand Down
Loading
Loading