├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── LICENSE ├── README.md ├── bitbucket-pipelines.yml ├── config-template.yml ├── config.example.js ├── config.js ├── delivery-module.png ├── lib ├── mojito.js └── shared-code.example.js ├── license.txt ├── package.json ├── scripts ├── cli-build.js ├── cli-get-changed-files-bitbucket-pipelines.js ├── cli-get-changed-files.js ├── cli-new.js ├── cli-publish.js ├── cli-send-lifecycle-events-snowplow.js ├── cli-send-lifecycle-events.js ├── cli-set.js ├── command.js └── run-tests.js ├── tests └── test_suite.html └── wave.schema.json /.eslintignore: -------------------------------------------------------------------------------- 1 | .eslintrc 2 | node_modules* 3 | dist 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | *.png binary 3 | -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/README.md -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/config-template.yml -------------------------------------------------------------------------------- /config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/config.example.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/config.js -------------------------------------------------------------------------------- /delivery-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/delivery-module.png -------------------------------------------------------------------------------- /lib/mojito.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/lib/mojito.js -------------------------------------------------------------------------------- /lib/shared-code.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/lib/shared-code.example.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/package.json -------------------------------------------------------------------------------- /scripts/cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-build.js -------------------------------------------------------------------------------- /scripts/cli-get-changed-files-bitbucket-pipelines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-get-changed-files-bitbucket-pipelines.js -------------------------------------------------------------------------------- /scripts/cli-get-changed-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-get-changed-files.js -------------------------------------------------------------------------------- /scripts/cli-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-new.js -------------------------------------------------------------------------------- /scripts/cli-publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-publish.js -------------------------------------------------------------------------------- /scripts/cli-send-lifecycle-events-snowplow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-send-lifecycle-events-snowplow.js -------------------------------------------------------------------------------- /scripts/cli-send-lifecycle-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-send-lifecycle-events.js -------------------------------------------------------------------------------- /scripts/cli-set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/cli-set.js -------------------------------------------------------------------------------- /scripts/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/command.js -------------------------------------------------------------------------------- /scripts/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/scripts/run-tests.js -------------------------------------------------------------------------------- /tests/test_suite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/tests/test_suite.html -------------------------------------------------------------------------------- /wave.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mint-metrics/mojito-js-delivery/HEAD/wave.schema.json --------------------------------------------------------------------------------