├── .claspignore ├── .editorconfig ├── .envrc ├── .eslintrc.cjs ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── release-please.yml └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .gitpod.yml ├── .mocharc.json ├── .npmignore ├── .npmrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── biome.json ├── docs ├── Gitpod │ ├── Code.gs │ └── README.md ├── README.md ├── config-files.md └── run.md ├── flake.nix ├── gemini-extension.json ├── gemini.md ├── package.json ├── src ├── auth │ ├── auth.ts │ ├── auth_code_flow.ts │ ├── credential_store.ts │ ├── file_credential_store.ts │ ├── localhost_auth_code_flow.ts │ └── serverless_auth_code_flow.ts ├── commands │ ├── clone-script.ts │ ├── create-deployment.ts │ ├── create-script.ts │ ├── create-version.ts │ ├── delete-deployment.ts │ ├── delete-script.ts │ ├── disable-api.ts │ ├── enable-api.ts │ ├── list-apis.ts │ ├── list-deployments.ts │ ├── list-scripts.ts │ ├── list-versions.ts │ ├── login.ts │ ├── logout.ts │ ├── open-apis.ts │ ├── open-container.ts │ ├── open-credentials.ts │ ├── open-logs.ts │ ├── open-script.ts │ ├── open-webapp.ts │ ├── program.ts │ ├── pull.ts │ ├── push.ts │ ├── run-function.ts │ ├── setup-logs.ts │ ├── show-authorized-user.ts │ ├── show-file-status.ts │ ├── start-mcp.ts │ ├── tail-logs.ts │ ├── update-deployment.ts │ ├── utils.ts │ └── validate.ts ├── constants.ts ├── core │ ├── apis.ts │ ├── clasp.ts │ ├── files.ts │ ├── functions.ts │ ├── logs.ts │ ├── manifest.ts │ ├── project.ts │ ├── services.ts │ └── utils.ts ├── experiments.ts ├── index.ts ├── intl.ts └── mcp │ └── server.ts ├── test ├── commands │ ├── clone-script.ts │ ├── create-deployment.ts │ ├── create-script.ts │ ├── create-version.ts │ ├── delete-deployment.ts │ ├── delete-script.ts │ ├── disable-api.ts │ ├── enable-api.ts │ ├── list-apis.ts │ ├── list-deployments.ts │ ├── list-scripts.ts │ ├── list-versions.ts │ ├── login.ts │ ├── logout.ts │ ├── open-apis.ts │ ├── open-container.ts │ ├── open-credentials.ts │ ├── open-logs.ts │ ├── open-script.ts │ ├── open-webapp.ts │ ├── program.ts │ ├── pull.ts │ ├── push.ts │ ├── run-function.ts │ ├── setup-logs.ts │ ├── show-authorized-user.ts │ ├── show-file-status.ts │ ├── tail-logs.ts │ ├── update-deployment.ts │ └── utils.ts ├── core │ ├── files.ts │ ├── functions.ts │ ├── logs.ts │ ├── project.ts │ └── services.ts ├── fixtures │ ├── Code.js │ ├── appsscript-no-services.json │ ├── appsscript-services.json │ ├── dot-clasp-dist.json │ ├── dot-clasp-extensions.json │ ├── dot-clasp-gcp-project.json │ ├── dot-clasp-no-settings.json │ ├── dot-clasp-with-parent-id.json │ ├── dot-claspignore.txt │ ├── dot-clasprc-authenticated-legacy.json │ ├── dot-clasprc-authenticated.json │ └── page.html ├── helpers.ts └── mocks.ts ├── ts-node.register.js └── tsconfig.json /.claspignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.claspignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.envrc -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.github/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - init: npm install -g @google/clasp 3 | -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test 3 | .* 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix='' 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.exclude": {} 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/biome.json -------------------------------------------------------------------------------- /docs/Gitpod/Code.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/docs/Gitpod/Code.gs -------------------------------------------------------------------------------- /docs/Gitpod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/docs/Gitpod/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/config-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/docs/config-files.md -------------------------------------------------------------------------------- /docs/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/docs/run.md -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/flake.nix -------------------------------------------------------------------------------- /gemini-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/gemini-extension.json -------------------------------------------------------------------------------- /gemini.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/gemini.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/package.json -------------------------------------------------------------------------------- /src/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/auth/auth.ts -------------------------------------------------------------------------------- /src/auth/auth_code_flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/auth/auth_code_flow.ts -------------------------------------------------------------------------------- /src/auth/credential_store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/auth/credential_store.ts -------------------------------------------------------------------------------- /src/auth/file_credential_store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/auth/file_credential_store.ts -------------------------------------------------------------------------------- /src/auth/localhost_auth_code_flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/auth/localhost_auth_code_flow.ts -------------------------------------------------------------------------------- /src/auth/serverless_auth_code_flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/auth/serverless_auth_code_flow.ts -------------------------------------------------------------------------------- /src/commands/clone-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/clone-script.ts -------------------------------------------------------------------------------- /src/commands/create-deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/create-deployment.ts -------------------------------------------------------------------------------- /src/commands/create-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/create-script.ts -------------------------------------------------------------------------------- /src/commands/create-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/create-version.ts -------------------------------------------------------------------------------- /src/commands/delete-deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/delete-deployment.ts -------------------------------------------------------------------------------- /src/commands/delete-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/delete-script.ts -------------------------------------------------------------------------------- /src/commands/disable-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/disable-api.ts -------------------------------------------------------------------------------- /src/commands/enable-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/enable-api.ts -------------------------------------------------------------------------------- /src/commands/list-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/list-apis.ts -------------------------------------------------------------------------------- /src/commands/list-deployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/list-deployments.ts -------------------------------------------------------------------------------- /src/commands/list-scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/list-scripts.ts -------------------------------------------------------------------------------- /src/commands/list-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/list-versions.ts -------------------------------------------------------------------------------- /src/commands/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/login.ts -------------------------------------------------------------------------------- /src/commands/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/logout.ts -------------------------------------------------------------------------------- /src/commands/open-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/open-apis.ts -------------------------------------------------------------------------------- /src/commands/open-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/open-container.ts -------------------------------------------------------------------------------- /src/commands/open-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/open-credentials.ts -------------------------------------------------------------------------------- /src/commands/open-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/open-logs.ts -------------------------------------------------------------------------------- /src/commands/open-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/open-script.ts -------------------------------------------------------------------------------- /src/commands/open-webapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/open-webapp.ts -------------------------------------------------------------------------------- /src/commands/program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/program.ts -------------------------------------------------------------------------------- /src/commands/pull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/pull.ts -------------------------------------------------------------------------------- /src/commands/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/push.ts -------------------------------------------------------------------------------- /src/commands/run-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/run-function.ts -------------------------------------------------------------------------------- /src/commands/setup-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/setup-logs.ts -------------------------------------------------------------------------------- /src/commands/show-authorized-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/show-authorized-user.ts -------------------------------------------------------------------------------- /src/commands/show-file-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/show-file-status.ts -------------------------------------------------------------------------------- /src/commands/start-mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/start-mcp.ts -------------------------------------------------------------------------------- /src/commands/tail-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/tail-logs.ts -------------------------------------------------------------------------------- /src/commands/update-deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/update-deployment.ts -------------------------------------------------------------------------------- /src/commands/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/utils.ts -------------------------------------------------------------------------------- /src/commands/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/commands/validate.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/core/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/apis.ts -------------------------------------------------------------------------------- /src/core/clasp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/clasp.ts -------------------------------------------------------------------------------- /src/core/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/files.ts -------------------------------------------------------------------------------- /src/core/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/functions.ts -------------------------------------------------------------------------------- /src/core/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/logs.ts -------------------------------------------------------------------------------- /src/core/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/manifest.ts -------------------------------------------------------------------------------- /src/core/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/project.ts -------------------------------------------------------------------------------- /src/core/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/services.ts -------------------------------------------------------------------------------- /src/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/core/utils.ts -------------------------------------------------------------------------------- /src/experiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/experiments.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/intl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/intl.ts -------------------------------------------------------------------------------- /src/mcp/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/src/mcp/server.ts -------------------------------------------------------------------------------- /test/commands/clone-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/clone-script.ts -------------------------------------------------------------------------------- /test/commands/create-deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/create-deployment.ts -------------------------------------------------------------------------------- /test/commands/create-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/create-script.ts -------------------------------------------------------------------------------- /test/commands/create-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/create-version.ts -------------------------------------------------------------------------------- /test/commands/delete-deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/delete-deployment.ts -------------------------------------------------------------------------------- /test/commands/delete-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/delete-script.ts -------------------------------------------------------------------------------- /test/commands/disable-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/disable-api.ts -------------------------------------------------------------------------------- /test/commands/enable-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/enable-api.ts -------------------------------------------------------------------------------- /test/commands/list-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/list-apis.ts -------------------------------------------------------------------------------- /test/commands/list-deployments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/list-deployments.ts -------------------------------------------------------------------------------- /test/commands/list-scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/list-scripts.ts -------------------------------------------------------------------------------- /test/commands/list-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/list-versions.ts -------------------------------------------------------------------------------- /test/commands/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/login.ts -------------------------------------------------------------------------------- /test/commands/logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/logout.ts -------------------------------------------------------------------------------- /test/commands/open-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/open-apis.ts -------------------------------------------------------------------------------- /test/commands/open-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/open-container.ts -------------------------------------------------------------------------------- /test/commands/open-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/open-credentials.ts -------------------------------------------------------------------------------- /test/commands/open-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/open-logs.ts -------------------------------------------------------------------------------- /test/commands/open-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/open-script.ts -------------------------------------------------------------------------------- /test/commands/open-webapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/open-webapp.ts -------------------------------------------------------------------------------- /test/commands/program.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/program.ts -------------------------------------------------------------------------------- /test/commands/pull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/pull.ts -------------------------------------------------------------------------------- /test/commands/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/push.ts -------------------------------------------------------------------------------- /test/commands/run-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/run-function.ts -------------------------------------------------------------------------------- /test/commands/setup-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/setup-logs.ts -------------------------------------------------------------------------------- /test/commands/show-authorized-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/show-authorized-user.ts -------------------------------------------------------------------------------- /test/commands/show-file-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/show-file-status.ts -------------------------------------------------------------------------------- /test/commands/tail-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/tail-logs.ts -------------------------------------------------------------------------------- /test/commands/update-deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/update-deployment.ts -------------------------------------------------------------------------------- /test/commands/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/commands/utils.ts -------------------------------------------------------------------------------- /test/core/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/core/files.ts -------------------------------------------------------------------------------- /test/core/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/core/functions.ts -------------------------------------------------------------------------------- /test/core/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/core/logs.ts -------------------------------------------------------------------------------- /test/core/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/core/project.ts -------------------------------------------------------------------------------- /test/core/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/core/services.ts -------------------------------------------------------------------------------- /test/fixtures/Code.js: -------------------------------------------------------------------------------- 1 | function test() { 2 | Logger.log('test'); 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/appsscript-no-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/appsscript-no-services.json -------------------------------------------------------------------------------- /test/fixtures/appsscript-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/appsscript-services.json -------------------------------------------------------------------------------- /test/fixtures/dot-clasp-dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/dot-clasp-dist.json -------------------------------------------------------------------------------- /test/fixtures/dot-clasp-extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/dot-clasp-extensions.json -------------------------------------------------------------------------------- /test/fixtures/dot-clasp-gcp-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/dot-clasp-gcp-project.json -------------------------------------------------------------------------------- /test/fixtures/dot-clasp-no-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/dot-clasp-no-settings.json -------------------------------------------------------------------------------- /test/fixtures/dot-clasp-with-parent-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/dot-clasp-with-parent-id.json -------------------------------------------------------------------------------- /test/fixtures/dot-claspignore.txt: -------------------------------------------------------------------------------- 1 | .git/** 2 | node_modules/** -------------------------------------------------------------------------------- /test/fixtures/dot-clasprc-authenticated-legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/dot-clasprc-authenticated-legacy.json -------------------------------------------------------------------------------- /test/fixtures/dot-clasprc-authenticated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/dot-clasprc-authenticated.json -------------------------------------------------------------------------------- /test/fixtures/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/fixtures/page.html -------------------------------------------------------------------------------- /test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/helpers.ts -------------------------------------------------------------------------------- /test/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/test/mocks.ts -------------------------------------------------------------------------------- /ts-node.register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/ts-node.register.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/clasp/HEAD/tsconfig.json --------------------------------------------------------------------------------