You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clasp push pushes all .ts and .js files, even from ./node_modules. I expected it to only push .gs files. Combined with #983, this seriously hinders usability.
Specifies the file extension for local script files in your Apps Script project.
What exactly does that mean?
Furthermore, the documentation for Push states it ignores files "That don't have an accepted file extension". Where is that accepted file extension configured?
Specifications
Node version (node -v): v18.19.0
Version (clasp -v): 2.4.2 (latest, released Sep 2022)
OS (Mac/Linux/Windows): Linux
The text was updated successfully, but these errors were encountered:
fileExtension is used more for pulling from the apps script to local, but doesn't affect filtering when pushing.
Two recommendations for avoiding pushing node_modules:
Use .claspignore file to block node_modules and any other unnecessary sources
Set the rootdir property of the project to a subdir and keep apps script source there. Keep anything you don't want pushed above or parallel to that dir.
Personally I used the latter approach and point to a ./dist or ./build dir that contains the output of any build steps. That way you can use rollup or other tools to leverage modules, import npm packages, etc. and have it output code that is flattened and compatible with apps script as a runtime. See https://github.com/sqrrrl/apps-script-typescript-rollup-starter as an example (though realized I didn't check in the template clasp configs)
Expected Behavior
My
clasp.json
looks like this:Actual Behavior
clasp push
pushes all.ts
and.js
files, even from./node_modules
. I expected it to only push.gs
files. Combined with #983, this seriously hinders usability.The README section for
fileExtension
says,What exactly does that mean?
Furthermore, the documentation for Push states it ignores files "That don't have an accepted file extension". Where is that accepted file extension configured?
Specifications
node -v
): v18.19.0clasp -v
): 2.4.2 (latest, released Sep 2022)The text was updated successfully, but these errors were encountered: