├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── feature-request.md ├── assets │ ├── header-dark-mobile.svg │ ├── header-dark.svg │ ├── header-light-mobile.svg │ └── header-light.svg ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── check-required-labels.yaml │ ├── deploy-published-releases.yaml │ ├── library-validations.yaml │ ├── preview-validations.yaml │ ├── publish-pr-preview.yaml │ └── update-release-notes.yaml ├── .gitignore ├── LICENSE ├── README.md ├── jest.config.mjs ├── jest.setup.js ├── package.json ├── post-build.mjs ├── preview ├── .eslintrc.js ├── .gitignore ├── .htmlnanorc ├── package-lock.json ├── package.json ├── playwright.config.ts ├── src │ ├── index.html │ ├── styles │ │ ├── global.css │ │ └── widget.css │ ├── widget.html │ └── widget.js ├── test │ ├── global.d.ts │ ├── widget.spec.ts │ └── widget.spec.ts-snapshots │ │ ├── widget-expanded-chromium.png │ │ ├── widget-expanded-firefox.png │ │ ├── widget-expanded-webkit.png │ │ ├── widget-invalid-locale-chromium.png │ │ ├── widget-invalid-locale-firefox.png │ │ ├── widget-invalid-locale-webkit.png │ │ ├── widget-minimized-chromium.png │ │ ├── widget-minimized-firefox.png │ │ ├── widget-minimized-webkit.png │ │ ├── widget-slot-default-content-chromium.png │ │ ├── widget-slot-default-content-firefox.png │ │ ├── widget-slot-default-content-webkit.png │ │ ├── widget-truncated-chromium.png │ │ ├── widget-truncated-firefox.png │ │ ├── widget-truncated-webkit.png │ │ ├── widget-without-experiment-chromium.png │ │ ├── widget-without-experiment-firefox.png │ │ ├── widget-without-experiment-webkit.png │ │ ├── widget-without-locale-chromium.png │ │ ├── widget-without-locale-firefox.png │ │ ├── widget-without-locale-webkit.png │ │ ├── widget-without-variant-chromium.png │ │ ├── widget-without-variant-firefox.png │ │ └── widget-without-variant-webkit.png └── tsconfig.json ├── renovate.json ├── rollup.config.mjs ├── src ├── api │ ├── evaluate.ts │ ├── fetchContent.ts │ └── index.ts ├── component.ts ├── constants.ts ├── global.d.ts ├── index.ts ├── plug.ts ├── plugin.ts ├── plugins │ ├── autoTracking │ │ ├── index.ts │ │ └── structuredData.ts │ ├── globalVariable │ │ └── index.ts │ └── preview │ │ └── index.ts ├── sdk │ ├── apiKey.ts │ ├── evaluation.ts │ ├── index.ts │ ├── json.ts │ ├── sdkEvents.ts │ ├── token.ts │ ├── tracking.ts │ └── validation.ts ├── slot.ts └── versioning.ts ├── test ├── api │ ├── evaluate.test.ts │ └── fetchContent.test.ts ├── component.test.ts ├── plug.test.ts ├── plugins │ ├── autoTracking │ │ ├── index.test.ts │ │ └── structuredData.test.ts │ ├── globalVariable │ │ └── index.test.ts │ └── preview │ │ └── index.test.ts └── slot.test.ts ├── tsconfig.json └── tsup.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/assets/header-dark-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/assets/header-dark-mobile.svg -------------------------------------------------------------------------------- /.github/assets/header-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/assets/header-dark.svg -------------------------------------------------------------------------------- /.github/assets/header-light-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/assets/header-light-mobile.svg -------------------------------------------------------------------------------- /.github/assets/header-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/assets/header-light.svg -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/check-required-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/workflows/check-required-labels.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-published-releases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/workflows/deploy-published-releases.yaml -------------------------------------------------------------------------------- /.github/workflows/library-validations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/workflows/library-validations.yaml -------------------------------------------------------------------------------- /.github/workflows/preview-validations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/workflows/preview-validations.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-pr-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/workflows/publish-pr-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/update-release-notes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/.github/workflows/update-release-notes.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/package.json -------------------------------------------------------------------------------- /post-build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/post-build.mjs -------------------------------------------------------------------------------- /preview/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/.eslintrc.js -------------------------------------------------------------------------------- /preview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/.gitignore -------------------------------------------------------------------------------- /preview/.htmlnanorc: -------------------------------------------------------------------------------- 1 | { 2 | "minifySvg": false 3 | } 4 | -------------------------------------------------------------------------------- /preview/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/package-lock.json -------------------------------------------------------------------------------- /preview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/package.json -------------------------------------------------------------------------------- /preview/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/playwright.config.ts -------------------------------------------------------------------------------- /preview/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/src/index.html -------------------------------------------------------------------------------- /preview/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/src/styles/global.css -------------------------------------------------------------------------------- /preview/src/styles/widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/src/styles/widget.css -------------------------------------------------------------------------------- /preview/src/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/src/widget.html -------------------------------------------------------------------------------- /preview/src/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/src/widget.js -------------------------------------------------------------------------------- /preview/test/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/global.d.ts -------------------------------------------------------------------------------- /preview/test/widget.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-expanded-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-expanded-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-expanded-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-expanded-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-expanded-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-expanded-webkit.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-invalid-locale-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-invalid-locale-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-invalid-locale-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-invalid-locale-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-invalid-locale-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-invalid-locale-webkit.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-minimized-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-minimized-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-minimized-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-minimized-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-minimized-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-minimized-webkit.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-slot-default-content-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-slot-default-content-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-slot-default-content-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-slot-default-content-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-slot-default-content-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-slot-default-content-webkit.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-truncated-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-truncated-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-truncated-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-truncated-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-truncated-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-truncated-webkit.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-experiment-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-experiment-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-experiment-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-experiment-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-experiment-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-experiment-webkit.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-locale-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-locale-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-locale-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-locale-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-locale-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-locale-webkit.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-variant-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-variant-chromium.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-variant-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-variant-firefox.png -------------------------------------------------------------------------------- /preview/test/widget.spec.ts-snapshots/widget-without-variant-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/test/widget.spec.ts-snapshots/widget-without-variant-webkit.png -------------------------------------------------------------------------------- /preview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/preview/tsconfig.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/renovate.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/api/evaluate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/api/evaluate.ts -------------------------------------------------------------------------------- /src/api/fetchContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/api/fetchContent.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/component.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/plug.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/plugins/autoTracking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/plugins/autoTracking/index.ts -------------------------------------------------------------------------------- /src/plugins/autoTracking/structuredData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/plugins/autoTracking/structuredData.ts -------------------------------------------------------------------------------- /src/plugins/globalVariable/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/plugins/globalVariable/index.ts -------------------------------------------------------------------------------- /src/plugins/preview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/plugins/preview/index.ts -------------------------------------------------------------------------------- /src/sdk/apiKey.ts: -------------------------------------------------------------------------------- 1 | export * from '@croct/sdk/apiKey'; 2 | -------------------------------------------------------------------------------- /src/sdk/evaluation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/sdk/evaluation.ts -------------------------------------------------------------------------------- /src/sdk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/sdk/index.ts -------------------------------------------------------------------------------- /src/sdk/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/sdk/json.ts -------------------------------------------------------------------------------- /src/sdk/sdkEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/sdk/sdkEvents.ts -------------------------------------------------------------------------------- /src/sdk/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/sdk/token.ts -------------------------------------------------------------------------------- /src/sdk/tracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/sdk/tracking.ts -------------------------------------------------------------------------------- /src/sdk/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/sdk/validation.ts -------------------------------------------------------------------------------- /src/slot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/slot.ts -------------------------------------------------------------------------------- /src/versioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/src/versioning.ts -------------------------------------------------------------------------------- /test/api/evaluate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/api/evaluate.test.ts -------------------------------------------------------------------------------- /test/api/fetchContent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/api/fetchContent.test.ts -------------------------------------------------------------------------------- /test/component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/component.test.ts -------------------------------------------------------------------------------- /test/plug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/plug.test.ts -------------------------------------------------------------------------------- /test/plugins/autoTracking/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/plugins/autoTracking/index.test.ts -------------------------------------------------------------------------------- /test/plugins/autoTracking/structuredData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/plugins/autoTracking/structuredData.test.ts -------------------------------------------------------------------------------- /test/plugins/globalVariable/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/plugins/globalVariable/index.test.ts -------------------------------------------------------------------------------- /test/plugins/preview/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/plugins/preview/index.test.ts -------------------------------------------------------------------------------- /test/slot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/test/slot.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croct-tech/plug-js/HEAD/tsup.config.ts --------------------------------------------------------------------------------