Import Instagram archive to a Bluesky account
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update package.json scripts for simplified start and logging

- Modify start script to compile and run from dist directory
- Simplify start_log script to use npm run start
- Ensure consistent script behavior for running the application

+2 -2
+2 -2
package.json
··· 7 7 "node": ">=20.12.0" 8 8 }, 9 9 "scripts": { 10 - "start": "npx tsc --sourceMap && node main.js", 11 - "start_log": "npx tsc --sourceMap && node ./dist/main.js > import.log", 10 + "start": "npx tsc --sourceMap && node ./dist/main.js", 11 + "start_log": "npm run start > import.log", 12 12 "compile": "npx tsc", 13 13 "test": "jest", 14 14 "test:watch": "jest --watch",