├── .editorconfig ├── .gitignore ├── .nvmrc ├── LICENSE ├── crawler ├── .babelrc ├── .gcloudignore ├── duplicate_tags.json ├── ignored_tags.json ├── index.js ├── package-lock.json ├── package.json ├── pub_tags.json └── rules.js ├── imager ├── .gcloudignore ├── index.js ├── package-lock.json ├── package.json └── utils.js ├── webflow_forms ├── .gcloudignore ├── index.js ├── package-lock.json └── package.json └── webhook ├── .gcloudignore ├── index.js ├── package-lock.json ├── package.json └── utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15.3 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/LICENSE -------------------------------------------------------------------------------- /crawler/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/.babelrc -------------------------------------------------------------------------------- /crawler/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/.gcloudignore -------------------------------------------------------------------------------- /crawler/duplicate_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/duplicate_tags.json -------------------------------------------------------------------------------- /crawler/ignored_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/ignored_tags.json -------------------------------------------------------------------------------- /crawler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/index.js -------------------------------------------------------------------------------- /crawler/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/package-lock.json -------------------------------------------------------------------------------- /crawler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/package.json -------------------------------------------------------------------------------- /crawler/pub_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/pub_tags.json -------------------------------------------------------------------------------- /crawler/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/crawler/rules.js -------------------------------------------------------------------------------- /imager/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/imager/.gcloudignore -------------------------------------------------------------------------------- /imager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/imager/index.js -------------------------------------------------------------------------------- /imager/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/imager/package-lock.json -------------------------------------------------------------------------------- /imager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/imager/package.json -------------------------------------------------------------------------------- /imager/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/imager/utils.js -------------------------------------------------------------------------------- /webflow_forms/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webflow_forms/.gcloudignore -------------------------------------------------------------------------------- /webflow_forms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webflow_forms/index.js -------------------------------------------------------------------------------- /webflow_forms/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webflow_forms/package-lock.json -------------------------------------------------------------------------------- /webflow_forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webflow_forms/package.json -------------------------------------------------------------------------------- /webhook/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webhook/.gcloudignore -------------------------------------------------------------------------------- /webhook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webhook/index.js -------------------------------------------------------------------------------- /webhook/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webhook/package-lock.json -------------------------------------------------------------------------------- /webhook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webhook/package.json -------------------------------------------------------------------------------- /webhook/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailydotdev/daily-functions/HEAD/webhook/utils.js --------------------------------------------------------------------------------