clasp push appsscript error even thought the file exists
See original GitHub issueHi
Copied over my project files to a new directory. Entered the clasp push cmd, and received the following error:
$ clasp push
Push failed. Errors:
Project contents must include a manifest file named appsscript.
clasp pull worked correctly.
$ clasp pull
Cloned 2 files.
└─ Code.js
└─ appsscript.json
Any ideas here?
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
Where `clasp` puts `.gs` files? Troubleshooting compiler errors ...
Workaround: Compile the typescript file, say Code.ts , into javascript yourself using tsc . Then validate the resulting local Code.js ...
Read more >clasp - The Apps Script CLI - Google Codelabs
The Apps Script CLI, or clasp , is a tool that lets you to create, edit, and deploy Apps Script projects locally.
Read more >AppsScriptPulse - The latest from the Google Apps Script and ...
How to fix Apps Script file loading order and defintion visibility problems with an Exports object. It's good practice to keep class and...
Read more >Troubleshooting | Apps Script - Google Developers
When your script encounters an error, an error message is displayed. The message is accompanied by a line number used for troubleshooting.
Read more >Taking Away the Pain From Unit Testing in Google Apps Script
Then, I run clasp push -w , which syncs my code to the server every time I save a local file. To stop...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Found the issue. My claspignore file had
appscript.json
not
appsscript.json
I’ll take that under advisement for next time.
Appreciate your time and help! Thanks