-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.bat
More file actions
31 lines (25 loc) · 752 Bytes
/
package.bat
File metadata and controls
31 lines (25 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@echo off
echo Building LinkedIn Post Date Extractor for Chrome Web Store...
echo.
REM Clean and build
call build.bat
REM Create package directory
if exist package rmdir /s /q package
mkdir package
REM Copy files to package
echo Copying files to package directory...
xcopy /s /q dist\* package\
REM Create ZIP file
echo Creating ZIP file for Chrome Web Store...
cd package
powershell Compress-Archive -Path * -DestinationPath ../linkedin-post-date-extractor-v1.0.0.zip -Force
cd ..
REM Cleanup
rmdir /s /q package
echo.
echo ========================================
echo Package created successfully!
echo File: linkedin-post-date-extractor-v1.0.0.zip
echo.
echo Ready to upload to Chrome Web Store!
echo ========================================