├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .github └── workflows │ ├── alpine-nginx-slim.yml │ ├── alpine-node.yml │ ├── dependency-review.yml │ ├── release.yml │ ├── snapshot-release.yml │ └── test-and-lint.yml ├── .gitignore ├── .yarn └── releases │ └── yarn-4.5.3.cjs ├── .yarnrc.yml ├── CONTRIBUTING.MD ├── README.md ├── lefthook.yml ├── package.json ├── packages ├── alpine-node-nginx │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── Dockerfile-nginx-slim │ ├── Dockerfile-slim │ ├── README.md │ ├── gpg │ │ ├── kandaurov.key │ │ ├── maxim.key │ │ ├── mdounin.key │ │ ├── sb.key │ │ └── thresh.key │ ├── nginx.conf │ └── package.json ├── arui-scripts-modules │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── global-definitions.d.ts │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── module-loader │ │ │ ├── __tests__ │ │ │ ├── create-module-fetcher.tests.ts │ │ │ ├── create-module-loader.tests.ts │ │ │ ├── create-server-state-module-fetcher.tests.ts │ │ │ └── execute-module-factory.tests.ts │ │ │ ├── create-module-fetcher.ts │ │ │ ├── create-module-loader.ts │ │ │ ├── create-server-state-module-fetcher.ts │ │ │ ├── execute-module-factory.ts │ │ │ ├── get-server-state-module-fetcher-params.ts │ │ │ ├── hooks │ │ │ ├── __tests__ │ │ │ │ ├── use-module-factory.tests.ts │ │ │ │ ├── use-module-loader.tests.ts │ │ │ │ ├── use-module-mount-target.tests.ts │ │ │ │ └── use-module-mounter.tests.ts │ │ │ ├── types.ts │ │ │ ├── use-id.ts │ │ │ ├── use-module-factory.ts │ │ │ ├── use-module-loader.ts │ │ │ ├── use-module-mount-target.ts │ │ │ └── use-module-mounter.ts │ │ │ ├── index.ts │ │ │ ├── module-types.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── consumer-counter.tests.ts │ │ │ ├── dom-utils.test.ts │ │ │ ├── fetch-app-manifest.tests.ts │ │ │ ├── get-module.tests.ts │ │ │ ├── is-safari.test.ts │ │ │ ├── normalize-url-segment.tests.ts │ │ │ └── unwrap-default-export.tests.ts │ │ │ ├── clean-global.ts │ │ │ ├── consumers-counter.ts │ │ │ ├── dom-utils.ts │ │ │ ├── fetch-app-manifest.ts │ │ │ ├── fetch-resources.ts │ │ │ ├── get-module.ts │ │ │ ├── is-safari.ts │ │ │ ├── modules-cache.ts │ │ │ ├── normalize-url-segment.ts │ │ │ └── unwrap-default-export.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.esm.json │ └── tsconfig.json ├── arui-scripts-server │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── read-assets-manifest.tests.ts │ │ ├── express.ts │ │ ├── hapi-16.ts │ │ ├── hapi-20.ts │ │ ├── index.ts │ │ ├── modules │ │ │ ├── __tests__ │ │ │ │ └── create-get-modules-method.tests.ts │ │ │ ├── create-get-modules-method.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── read-assets-manifest.ts │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── arui-scripts │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ │ └── build.sh │ ├── docs │ │ ├── artifact.md │ │ ├── caveats.md │ │ ├── client-only.md │ │ ├── commands.md │ │ ├── compilers.md │ │ ├── compression-dictionary.md │ │ ├── examples.md │ │ ├── modules.md │ │ ├── overrides.md │ │ ├── presets.md │ │ └── settings.md │ ├── jest-preset.js │ ├── package.json │ ├── src │ │ ├── bin │ │ │ └── index.ts │ │ ├── commands │ │ │ ├── archive-build │ │ │ │ └── index.ts │ │ │ ├── build │ │ │ │ ├── build-wrapper.ts │ │ │ │ ├── client.ts │ │ │ │ ├── index.ts │ │ │ │ └── server.ts │ │ │ ├── bundle-analyze │ │ │ │ └── index.ts │ │ │ ├── changelog │ │ │ │ └── index.ts │ │ │ ├── docker-build-compiled │ │ │ │ └── index.ts │ │ │ ├── docker-build │ │ │ │ ├── .gitignore │ │ │ │ └── index.ts │ │ │ ├── ensure-yarn │ │ │ │ └── index.ts │ │ │ ├── start-prod │ │ │ │ ├── client.ts │ │ │ │ ├── index.ts │ │ │ │ └── server.ts │ │ │ ├── start │ │ │ │ ├── client.ts │ │ │ │ ├── index.ts │ │ │ │ ├── print-compiler-output.ts │ │ │ │ └── server.ts │ │ │ ├── test │ │ │ │ ├── get-config.ts │ │ │ │ └── index.ts │ │ │ └── util │ │ │ │ ├── client-assets-sizes.ts │ │ │ │ ├── docker-build.ts │ │ │ │ ├── exec.ts │ │ │ │ ├── format-webpack-messages.ts │ │ │ │ ├── load-browserslist.ts │ │ │ │ ├── make-tmp-dir.ts │ │ │ │ ├── run-client-dev-server.ts │ │ │ │ ├── run-compilers.ts │ │ │ │ ├── run-server-watch-compiler.ts │ │ │ │ ├── tsc.ts │ │ │ │ └── yarn.ts │ │ ├── configs │ │ │ ├── app-configs │ │ │ │ ├── __tests__ │ │ │ │ │ ├── update-with-env.tests.ts │ │ │ │ │ ├── update-with-package.tests.ts │ │ │ │ │ ├── update-with-presets.tests.ts │ │ │ │ │ └── validate-settings-keys.tests.ts │ │ │ │ ├── calculate-dependent-config.ts │ │ │ │ ├── get-defaults.ts │ │ │ │ ├── index.ts │ │ │ │ ├── read-config-file.ts │ │ │ │ ├── types.ts │ │ │ │ ├── update-with-config-file.ts │ │ │ │ ├── update-with-env.ts │ │ │ │ ├── update-with-package.ts │ │ │ │ ├── update-with-presets.ts │ │ │ │ ├── validate-config.ts │ │ │ │ ├── validate-settings-keys.ts │ │ │ │ └── warn-about-deprecations.ts │ │ │ ├── babel-client.ts │ │ │ ├── babel-dependencies.ts │ │ │ ├── babel-server.ts │ │ │ ├── client-env-config │ │ │ │ ├── add-env-to-html-template.ts │ │ │ │ ├── client-config-plugin.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── get-env-config.ts │ │ │ │ └── index.ts │ │ │ ├── config-extras │ │ │ │ └── minimizers │ │ │ │ │ ├── imagemin │ │ │ │ │ ├── imagemin.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ ├── dev-server.ts │ │ │ ├── jest │ │ │ │ ├── babel-transform.js │ │ │ │ ├── css-mock.js │ │ │ │ ├── file-transform.js │ │ │ │ └── settings.js │ │ │ ├── modules.ts │ │ │ ├── mq.css │ │ │ ├── postcss.config.ts │ │ │ ├── postcss.ts │ │ │ ├── process-assets-plugin-output.ts │ │ │ ├── server-externals-exemptions.ts │ │ │ ├── stats-options.ts │ │ │ ├── supporting-browsers.ts │ │ │ ├── supporting-node.ts │ │ │ ├── swc.ts │ │ │ ├── util │ │ │ │ ├── __tests__ │ │ │ │ │ ├── apply-overrides.tests.ts │ │ │ │ │ ├── compress-with-dcb.test.ts │ │ │ │ │ ├── find-plugin.tests.ts │ │ │ │ │ └── get-polyfills.tests.ts │ │ │ │ ├── apply-overrides.ts │ │ │ │ ├── check-node-version.ts │ │ │ │ ├── compress-with-dcb.ts │ │ │ │ ├── compression-plugins-for-dictionaries.ts │ │ │ │ ├── dcb-compression-plugin.ts │ │ │ │ ├── find-loader.ts │ │ │ │ ├── find-plugin.ts │ │ │ │ ├── get-entry.ts │ │ │ │ ├── get-polyfills.ts │ │ │ │ ├── get-webpack-cache-dependencies.ts │ │ │ │ ├── install-sourcemap-support.js │ │ │ │ ├── node-assets-ignore.js │ │ │ │ ├── noop.js │ │ │ │ ├── register-ts-node.ts │ │ │ │ └── resolve.ts │ │ │ ├── webpack.client.dev.ts │ │ │ ├── webpack.client.prod.ts │ │ │ ├── webpack.client.ts │ │ │ ├── webpack.server.dev.ts │ │ │ ├── webpack.server.prod.ts │ │ │ └── webpack.server.ts │ │ ├── index.ts │ │ ├── plugins │ │ │ ├── arui-runtime │ │ │ │ ├── arui-runtime-module.ts │ │ │ │ └── index.ts │ │ │ ├── postcss-global-variables │ │ │ │ ├── postcss-global-variables.ts │ │ │ │ └── utils │ │ │ │ │ ├── __tests__ │ │ │ │ │ ├── add-global-variable.tests.ts │ │ │ │ │ ├── get-media-query-name.tests.ts │ │ │ │ │ └── parse-variables.tests.ts │ │ │ │ │ └── utils.ts │ │ │ ├── postcss-prefix-selector.ts │ │ │ ├── reload-server-plugin.ts │ │ │ ├── turn-off-split-remote-entry.ts │ │ │ └── watch-missing-node-modules-plugin.ts │ │ └── templates │ │ │ ├── base-nginx.conf.template.ts │ │ │ ├── dockerfile-compiled.template.ts │ │ │ ├── dockerfile.template.ts │ │ │ ├── html.template.ts │ │ │ ├── nginx.conf.template.ts │ │ │ └── start.template.ts │ ├── stylelint.config.js │ ├── tsconfig-local.json │ ├── tsconfig.eslint.json │ └── tsconfig.json ├── client-event-bus │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── implementation.test.ts │ │ ├── custom-event.ts │ │ ├── get-event-bus.ts │ │ ├── implementation.ts │ │ ├── index.ts │ │ ├── types │ │ │ ├── abstract-types.ts │ │ │ └── types.ts │ │ └── use-event-bus-value.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.esm.json │ └── tsconfig.json ├── example-modules │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── arui-scripts.config.ts │ ├── arui-scripts.overrides.ts │ ├── dict │ │ └── example-modules.dict │ ├── global-definitions.d.ts │ ├── jest.config.validate-build.js │ ├── package.json │ ├── src │ │ ├── bootstrap.tsx │ │ ├── client.tsx │ │ ├── components │ │ │ └── app.tsx │ │ ├── modules │ │ │ ├── factory-module-compat │ │ │ │ └── index.ts │ │ │ ├── module-abstract │ │ │ │ └── index.ts │ │ │ ├── module-compat │ │ │ │ ├── compat-module.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── module │ │ │ │ ├── example-module.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── server-state-factory-module │ │ │ │ └── index.ts │ │ │ ├── server-state-module-compat │ │ │ │ ├── index.tsx │ │ │ │ └── server-state-module-compat.tsx │ │ │ └── server-state-module │ │ │ │ ├── index.tsx │ │ │ │ ├── server-state-module.module.css │ │ │ │ └── server-state-module.tsx │ │ ├── server │ │ │ ├── index.ts │ │ │ └── read-assets.ts │ │ └── shared │ │ │ └── postcss-features │ │ │ ├── index.ts │ │ │ ├── postcss-features.tsx │ │ │ ├── styles.css │ │ │ └── styles.module.css │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ └── validate-build │ │ ├── __snapshots__ │ │ └── build.spec.ts.snap │ │ ├── build.spec.ts │ │ └── tsconfig.json └── example │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── CHANGELOG.md │ ├── README.md │ ├── __tests__ │ └── setup.js │ ├── arui-scripts.config.ts │ ├── arui-scripts.overrides.ts │ ├── global-definitions.d.ts │ ├── jest.config.validate-build.js │ ├── package.json │ ├── src │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── app.tests.tsx.snap │ │ ├── app.tests.tsx │ │ ├── server.tests.ts │ │ └── utils.tests.ts │ ├── client.tsx │ ├── clock.svg │ ├── components │ │ ├── app.module.css │ │ ├── app.tsx │ │ ├── client.png │ │ ├── clock.svg │ │ ├── modules-tabs.tsx │ │ ├── postcss-features │ │ │ ├── index.ts │ │ │ ├── postcss-features.tsx │ │ │ ├── styles.css │ │ │ └── styles.module.css │ │ └── style.css │ ├── module-mounters │ │ ├── abstract-module.tsx │ │ ├── compat-module-mounter.tsx │ │ ├── factory-compat-module-mounter.tsx │ │ ├── module-mounter.tsx │ │ ├── server-state-compat-module-mounter.tsx │ │ ├── server-state-factory-module-mounter.tsx │ │ └── server-state-module-mounter.tsx │ ├── polyfills.js │ ├── server │ │ ├── index.ts │ │ └── server.png │ ├── utils.ts │ └── worker.ts │ ├── tsconfig.eslint.json │ ├── tsconfig.json │ └── validate-build │ ├── __snapshots__ │ └── build.spec.ts.snap │ ├── build.spec.ts │ └── tsconfig.json ├── turbo.json └── yarn.lock /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/alpine-nginx-slim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.github/workflows/alpine-nginx-slim.yml -------------------------------------------------------------------------------- /.github/workflows/alpine-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.github/workflows/alpine-node.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.github/workflows/snapshot-release.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.github/workflows/test-and-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.5.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.yarn/releases/yarn-4.5.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/README.md -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/package.json -------------------------------------------------------------------------------- /packages/alpine-node-nginx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/CHANGELOG.md -------------------------------------------------------------------------------- /packages/alpine-node-nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/Dockerfile -------------------------------------------------------------------------------- /packages/alpine-node-nginx/Dockerfile-nginx-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/Dockerfile-nginx-slim -------------------------------------------------------------------------------- /packages/alpine-node-nginx/Dockerfile-slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/Dockerfile-slim -------------------------------------------------------------------------------- /packages/alpine-node-nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/README.md -------------------------------------------------------------------------------- /packages/alpine-node-nginx/gpg/kandaurov.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/gpg/kandaurov.key -------------------------------------------------------------------------------- /packages/alpine-node-nginx/gpg/maxim.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/gpg/maxim.key -------------------------------------------------------------------------------- /packages/alpine-node-nginx/gpg/mdounin.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/gpg/mdounin.key -------------------------------------------------------------------------------- /packages/alpine-node-nginx/gpg/sb.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/gpg/sb.key -------------------------------------------------------------------------------- /packages/alpine-node-nginx/gpg/thresh.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/gpg/thresh.key -------------------------------------------------------------------------------- /packages/alpine-node-nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/nginx.conf -------------------------------------------------------------------------------- /packages/alpine-node-nginx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/alpine-node-nginx/package.json -------------------------------------------------------------------------------- /packages/arui-scripts-modules/.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | .turbo -------------------------------------------------------------------------------- /packages/arui-scripts-modules/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/.eslintrc.js -------------------------------------------------------------------------------- /packages/arui-scripts-modules/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /packages/arui-scripts-modules/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/.npmignore -------------------------------------------------------------------------------- /packages/arui-scripts-modules/.prettierignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | build 3 | -------------------------------------------------------------------------------- /packages/arui-scripts-modules/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/CHANGELOG.md -------------------------------------------------------------------------------- /packages/arui-scripts-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/README.md -------------------------------------------------------------------------------- /packages/arui-scripts-modules/global-definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/global-definitions.d.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/jest.config.js -------------------------------------------------------------------------------- /packages/arui-scripts-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/package.json -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './module-loader'; 2 | -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/__tests__/create-module-fetcher.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/__tests__/create-module-fetcher.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/__tests__/create-module-loader.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/__tests__/create-module-loader.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/__tests__/create-server-state-module-fetcher.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/__tests__/create-server-state-module-fetcher.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/__tests__/execute-module-factory.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/__tests__/execute-module-factory.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/create-module-fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/create-module-fetcher.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/create-module-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/create-module-loader.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/create-server-state-module-fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/create-server-state-module-fetcher.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/execute-module-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/execute-module-factory.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/get-server-state-module-fetcher-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/get-server-state-module-fetcher-params.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-factory.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-factory.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-loader.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-loader.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-mount-target.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-mount-target.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-mounter.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/__tests__/use-module-mounter.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/types.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/use-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/use-id.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/use-module-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/use-module-factory.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/use-module-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/use-module-loader.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/use-module-mount-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/use-module-mount-target.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/hooks/use-module-mounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/hooks/use-module-mounter.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/module-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/module-types.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/types.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/__tests__/consumer-counter.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/__tests__/consumer-counter.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/__tests__/dom-utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/__tests__/dom-utils.test.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/__tests__/fetch-app-manifest.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/__tests__/fetch-app-manifest.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/__tests__/get-module.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/__tests__/get-module.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/__tests__/is-safari.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/__tests__/is-safari.test.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/__tests__/normalize-url-segment.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/__tests__/normalize-url-segment.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/__tests__/unwrap-default-export.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/__tests__/unwrap-default-export.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/clean-global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/clean-global.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/consumers-counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/consumers-counter.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/dom-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/dom-utils.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/fetch-app-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/fetch-app-manifest.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/fetch-resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/fetch-resources.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/get-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/get-module.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/is-safari.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/is-safari.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/modules-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/modules-cache.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/normalize-url-segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/normalize-url-segment.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/src/module-loader/utils/unwrap-default-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/src/module-loader/utils/unwrap-default-export.ts -------------------------------------------------------------------------------- /packages/arui-scripts-modules/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/arui-scripts-modules/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/tsconfig.esm.json -------------------------------------------------------------------------------- /packages/arui-scripts-modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-modules/tsconfig.json -------------------------------------------------------------------------------- /packages/arui-scripts-server/.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | .turbo -------------------------------------------------------------------------------- /packages/arui-scripts-server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/.eslintrc.js -------------------------------------------------------------------------------- /packages/arui-scripts-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /packages/arui-scripts-server/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/.npmignore -------------------------------------------------------------------------------- /packages/arui-scripts-server/.prettierignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | build 3 | -------------------------------------------------------------------------------- /packages/arui-scripts-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/CHANGELOG.md -------------------------------------------------------------------------------- /packages/arui-scripts-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/README.md -------------------------------------------------------------------------------- /packages/arui-scripts-server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/jest.config.js -------------------------------------------------------------------------------- /packages/arui-scripts-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/package.json -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/__tests__/read-assets-manifest.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/__tests__/read-assets-manifest.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/express.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/express.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/hapi-16.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/hapi-16.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/hapi-20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/hapi-20.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/modules/__tests__/create-get-modules-method.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/modules/__tests__/create-get-modules-method.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/modules/create-get-modules-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/modules/create-get-modules-method.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/modules/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/modules/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/modules/types.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/src/read-assets-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/src/read-assets-manifest.ts -------------------------------------------------------------------------------- /packages/arui-scripts-server/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/arui-scripts-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts-server/tsconfig.json -------------------------------------------------------------------------------- /packages/arui-scripts/.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | .turbo -------------------------------------------------------------------------------- /packages/arui-scripts/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/.eslintrc.js -------------------------------------------------------------------------------- /packages/arui-scripts/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /packages/arui-scripts/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/.npmignore -------------------------------------------------------------------------------- /packages/arui-scripts/.prettierignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | build 3 | -------------------------------------------------------------------------------- /packages/arui-scripts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/CHANGELOG.md -------------------------------------------------------------------------------- /packages/arui-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/README.md -------------------------------------------------------------------------------- /packages/arui-scripts/bin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/bin/build.sh -------------------------------------------------------------------------------- /packages/arui-scripts/docs/artifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/artifact.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/caveats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/caveats.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/client-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/client-only.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/commands.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/compilers.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/compression-dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/compression-dictionary.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/examples.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/modules.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/overrides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/overrides.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/presets.md -------------------------------------------------------------------------------- /packages/arui-scripts/docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/docs/settings.md -------------------------------------------------------------------------------- /packages/arui-scripts/jest-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/jest-preset.js -------------------------------------------------------------------------------- /packages/arui-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/package.json -------------------------------------------------------------------------------- /packages/arui-scripts/src/bin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/bin/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/archive-build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/archive-build/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/build/build-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/build/build-wrapper.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/build/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/build/client.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/build/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/build/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/build/server.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/bundle-analyze/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/bundle-analyze/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/changelog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/changelog/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/docker-build-compiled/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/docker-build-compiled/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/docker-build/.gitignore: -------------------------------------------------------------------------------- 1 | nginx.conf -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/docker-build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/docker-build/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/ensure-yarn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/ensure-yarn/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/start-prod/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/start-prod/client.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/start-prod/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/start-prod/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/start-prod/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/start-prod/server.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/start/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/start/client.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/start/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/start/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/start/print-compiler-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/start/print-compiler-output.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/start/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/start/server.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/test/get-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/test/get-config.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/test/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/client-assets-sizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/client-assets-sizes.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/docker-build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/docker-build.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/exec.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/format-webpack-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/format-webpack-messages.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/load-browserslist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/load-browserslist.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/make-tmp-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/make-tmp-dir.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/run-client-dev-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/run-client-dev-server.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/run-compilers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/run-compilers.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/run-server-watch-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/run-server-watch-compiler.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/tsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/tsc.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/commands/util/yarn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/commands/util/yarn.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/__tests__/update-with-env.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/__tests__/update-with-env.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/__tests__/update-with-package.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/__tests__/update-with-package.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/__tests__/update-with-presets.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/__tests__/update-with-presets.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/__tests__/validate-settings-keys.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/__tests__/validate-settings-keys.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/calculate-dependent-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/calculate-dependent-config.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/get-defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/get-defaults.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/read-config-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/read-config-file.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/types.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/update-with-config-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/update-with-config-file.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/update-with-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/update-with-env.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/update-with-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/update-with-package.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/update-with-presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/update-with-presets.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/validate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/validate-config.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/validate-settings-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/validate-settings-keys.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/app-configs/warn-about-deprecations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/app-configs/warn-about-deprecations.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/babel-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/babel-client.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/babel-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/babel-dependencies.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/babel-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/babel-server.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/client-env-config/add-env-to-html-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/client-env-config/add-env-to-html-template.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/client-env-config/client-config-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/client-env-config/client-config-plugin.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/client-env-config/constants.ts: -------------------------------------------------------------------------------- 1 | export const ENV_CONFIG_FILENAME = 'env-config.json'; 2 | -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/client-env-config/get-env-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/client-env-config/get-env-config.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/client-env-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/client-env-config/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/config-extras/minimizers/imagemin/imagemin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/config-extras/minimizers/imagemin/imagemin.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/config-extras/minimizers/imagemin/index.ts: -------------------------------------------------------------------------------- 1 | export * from './imagemin'; 2 | -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/config-extras/minimizers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './imagemin'; 2 | -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/dev-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/dev-server.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/jest/babel-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/jest/babel-transform.js -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/jest/css-mock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/jest/file-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/jest/file-transform.js -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/jest/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/jest/settings.js -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/modules.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/mq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/mq.css -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/postcss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/postcss.config.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/postcss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/postcss.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/process-assets-plugin-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/process-assets-plugin-output.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/server-externals-exemptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/server-externals-exemptions.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/stats-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/stats-options.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/supporting-browsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/supporting-browsers.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/supporting-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/supporting-node.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/swc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/swc.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/__tests__/apply-overrides.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/__tests__/apply-overrides.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/__tests__/compress-with-dcb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/__tests__/compress-with-dcb.test.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/__tests__/find-plugin.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/__tests__/find-plugin.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/__tests__/get-polyfills.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/__tests__/get-polyfills.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/apply-overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/apply-overrides.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/check-node-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/check-node-version.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/compress-with-dcb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/compress-with-dcb.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/compression-plugins-for-dictionaries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/compression-plugins-for-dictionaries.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/dcb-compression-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/dcb-compression-plugin.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/find-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/find-loader.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/find-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/find-plugin.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/get-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/get-entry.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/get-polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/get-polyfills.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/get-webpack-cache-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/get-webpack-cache-dependencies.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/install-sourcemap-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/install-sourcemap-support.js -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/node-assets-ignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/node-assets-ignore.js -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/noop.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/register-ts-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/register-ts-node.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/util/resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/util/resolve.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/webpack.client.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/webpack.client.dev.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/webpack.client.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/webpack.client.prod.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/webpack.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/webpack.client.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/webpack.server.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/webpack.server.dev.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/webpack.server.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/webpack.server.prod.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/configs/webpack.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/configs/webpack.server.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/arui-runtime/arui-runtime-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/arui-runtime/arui-runtime-module.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/arui-runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/arui-runtime/index.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/postcss-global-variables/postcss-global-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/postcss-global-variables/postcss-global-variables.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/postcss-global-variables/utils/__tests__/add-global-variable.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/postcss-global-variables/utils/__tests__/add-global-variable.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/postcss-global-variables/utils/__tests__/get-media-query-name.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/postcss-global-variables/utils/__tests__/get-media-query-name.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/postcss-global-variables/utils/__tests__/parse-variables.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/postcss-global-variables/utils/__tests__/parse-variables.tests.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/postcss-global-variables/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/postcss-global-variables/utils/utils.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/postcss-prefix-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/postcss-prefix-selector.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/reload-server-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/reload-server-plugin.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/turn-off-split-remote-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/turn-off-split-remote-entry.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/plugins/watch-missing-node-modules-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/plugins/watch-missing-node-modules-plugin.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/templates/base-nginx.conf.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/templates/base-nginx.conf.template.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/templates/dockerfile-compiled.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/templates/dockerfile-compiled.template.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/templates/dockerfile.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/templates/dockerfile.template.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/templates/html.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/templates/html.template.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/templates/nginx.conf.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/templates/nginx.conf.template.ts -------------------------------------------------------------------------------- /packages/arui-scripts/src/templates/start.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/src/templates/start.template.ts -------------------------------------------------------------------------------- /packages/arui-scripts/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/stylelint.config.js -------------------------------------------------------------------------------- /packages/arui-scripts/tsconfig-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/tsconfig-local.json -------------------------------------------------------------------------------- /packages/arui-scripts/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/arui-scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/arui-scripts/tsconfig.json -------------------------------------------------------------------------------- /packages/client-event-bus/.eslintignore: -------------------------------------------------------------------------------- 1 | build 2 | .turbo -------------------------------------------------------------------------------- /packages/client-event-bus/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/.eslintrc.js -------------------------------------------------------------------------------- /packages/client-event-bus/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /packages/client-event-bus/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/.npmignore -------------------------------------------------------------------------------- /packages/client-event-bus/.prettierignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | build 3 | -------------------------------------------------------------------------------- /packages/client-event-bus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/CHANGELOG.md -------------------------------------------------------------------------------- /packages/client-event-bus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/README.md -------------------------------------------------------------------------------- /packages/client-event-bus/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/jest.config.js -------------------------------------------------------------------------------- /packages/client-event-bus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/package.json -------------------------------------------------------------------------------- /packages/client-event-bus/src/__tests__/implementation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/__tests__/implementation.test.ts -------------------------------------------------------------------------------- /packages/client-event-bus/src/custom-event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/custom-event.ts -------------------------------------------------------------------------------- /packages/client-event-bus/src/get-event-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/get-event-bus.ts -------------------------------------------------------------------------------- /packages/client-event-bus/src/implementation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/implementation.ts -------------------------------------------------------------------------------- /packages/client-event-bus/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/index.ts -------------------------------------------------------------------------------- /packages/client-event-bus/src/types/abstract-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/types/abstract-types.ts -------------------------------------------------------------------------------- /packages/client-event-bus/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/types/types.ts -------------------------------------------------------------------------------- /packages/client-event-bus/src/use-event-bus-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/src/use-event-bus-value.ts -------------------------------------------------------------------------------- /packages/client-event-bus/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/client-event-bus/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/tsconfig.esm.json -------------------------------------------------------------------------------- /packages/client-event-bus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/client-event-bus/tsconfig.json -------------------------------------------------------------------------------- /packages/example-modules/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/.eslintrc.js -------------------------------------------------------------------------------- /packages/example-modules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/.gitignore -------------------------------------------------------------------------------- /packages/example-modules/.prettierignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | .build 3 | -------------------------------------------------------------------------------- /packages/example-modules/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/CHANGELOG.md -------------------------------------------------------------------------------- /packages/example-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/README.md -------------------------------------------------------------------------------- /packages/example-modules/arui-scripts.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/arui-scripts.config.ts -------------------------------------------------------------------------------- /packages/example-modules/arui-scripts.overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/arui-scripts.overrides.ts -------------------------------------------------------------------------------- /packages/example-modules/dict/example-modules.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/dict/example-modules.dict -------------------------------------------------------------------------------- /packages/example-modules/global-definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/global-definitions.d.ts -------------------------------------------------------------------------------- /packages/example-modules/jest.config.validate-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/jest.config.validate-build.js -------------------------------------------------------------------------------- /packages/example-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/package.json -------------------------------------------------------------------------------- /packages/example-modules/src/bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/bootstrap.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/client.tsx: -------------------------------------------------------------------------------- 1 | import('./bootstrap'); 2 | -------------------------------------------------------------------------------- /packages/example-modules/src/components/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/components/app.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/factory-module-compat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/factory-module-compat/index.ts -------------------------------------------------------------------------------- /packages/example-modules/src/modules/module-abstract/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/module-abstract/index.ts -------------------------------------------------------------------------------- /packages/example-modules/src/modules/module-compat/compat-module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/module-compat/compat-module.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/module-compat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/module-compat/index.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/module-compat/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/module-compat/styles.css -------------------------------------------------------------------------------- /packages/example-modules/src/modules/module/example-module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/module/example-module.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/module/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/module/index.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/module/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/module/styles.css -------------------------------------------------------------------------------- /packages/example-modules/src/modules/server-state-factory-module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/server-state-factory-module/index.ts -------------------------------------------------------------------------------- /packages/example-modules/src/modules/server-state-module-compat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/server-state-module-compat/index.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/server-state-module-compat/server-state-module-compat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/server-state-module-compat/server-state-module-compat.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/server-state-module/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/server-state-module/index.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/modules/server-state-module/server-state-module.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/server-state-module/server-state-module.module.css -------------------------------------------------------------------------------- /packages/example-modules/src/modules/server-state-module/server-state-module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/modules/server-state-module/server-state-module.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/server/index.ts -------------------------------------------------------------------------------- /packages/example-modules/src/server/read-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/server/read-assets.ts -------------------------------------------------------------------------------- /packages/example-modules/src/shared/postcss-features/index.ts: -------------------------------------------------------------------------------- 1 | export * from './postcss-features'; 2 | -------------------------------------------------------------------------------- /packages/example-modules/src/shared/postcss-features/postcss-features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/shared/postcss-features/postcss-features.tsx -------------------------------------------------------------------------------- /packages/example-modules/src/shared/postcss-features/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/shared/postcss-features/styles.css -------------------------------------------------------------------------------- /packages/example-modules/src/shared/postcss-features/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/src/shared/postcss-features/styles.module.css -------------------------------------------------------------------------------- /packages/example-modules/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/example-modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/tsconfig.json -------------------------------------------------------------------------------- /packages/example-modules/validate-build/__snapshots__/build.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/validate-build/__snapshots__/build.spec.ts.snap -------------------------------------------------------------------------------- /packages/example-modules/validate-build/build.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/validate-build/build.spec.ts -------------------------------------------------------------------------------- /packages/example-modules/validate-build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example-modules/validate-build/tsconfig.json -------------------------------------------------------------------------------- /packages/example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/.eslintrc.js -------------------------------------------------------------------------------- /packages/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/.gitignore -------------------------------------------------------------------------------- /packages/example/.prettierignore: -------------------------------------------------------------------------------- 1 | .turbo 2 | .build 3 | -------------------------------------------------------------------------------- /packages/example/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/CHANGELOG.md -------------------------------------------------------------------------------- /packages/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/README.md -------------------------------------------------------------------------------- /packages/example/__tests__/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/__tests__/setup.js -------------------------------------------------------------------------------- /packages/example/arui-scripts.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/arui-scripts.config.ts -------------------------------------------------------------------------------- /packages/example/arui-scripts.overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/arui-scripts.overrides.ts -------------------------------------------------------------------------------- /packages/example/global-definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/global-definitions.d.ts -------------------------------------------------------------------------------- /packages/example/jest.config.validate-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/jest.config.validate-build.js -------------------------------------------------------------------------------- /packages/example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/package.json -------------------------------------------------------------------------------- /packages/example/src/__tests__/__snapshots__/app.tests.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/__tests__/__snapshots__/app.tests.tsx.snap -------------------------------------------------------------------------------- /packages/example/src/__tests__/app.tests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/__tests__/app.tests.tsx -------------------------------------------------------------------------------- /packages/example/src/__tests__/server.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/__tests__/server.tests.ts -------------------------------------------------------------------------------- /packages/example/src/__tests__/utils.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/__tests__/utils.tests.ts -------------------------------------------------------------------------------- /packages/example/src/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/client.tsx -------------------------------------------------------------------------------- /packages/example/src/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/clock.svg -------------------------------------------------------------------------------- /packages/example/src/components/app.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/app.module.css -------------------------------------------------------------------------------- /packages/example/src/components/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/app.tsx -------------------------------------------------------------------------------- /packages/example/src/components/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/client.png -------------------------------------------------------------------------------- /packages/example/src/components/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/clock.svg -------------------------------------------------------------------------------- /packages/example/src/components/modules-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/modules-tabs.tsx -------------------------------------------------------------------------------- /packages/example/src/components/postcss-features/index.ts: -------------------------------------------------------------------------------- 1 | export * from './postcss-features'; 2 | -------------------------------------------------------------------------------- /packages/example/src/components/postcss-features/postcss-features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/postcss-features/postcss-features.tsx -------------------------------------------------------------------------------- /packages/example/src/components/postcss-features/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/postcss-features/styles.css -------------------------------------------------------------------------------- /packages/example/src/components/postcss-features/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/postcss-features/styles.module.css -------------------------------------------------------------------------------- /packages/example/src/components/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/components/style.css -------------------------------------------------------------------------------- /packages/example/src/module-mounters/abstract-module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/module-mounters/abstract-module.tsx -------------------------------------------------------------------------------- /packages/example/src/module-mounters/compat-module-mounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/module-mounters/compat-module-mounter.tsx -------------------------------------------------------------------------------- /packages/example/src/module-mounters/factory-compat-module-mounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/module-mounters/factory-compat-module-mounter.tsx -------------------------------------------------------------------------------- /packages/example/src/module-mounters/module-mounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/module-mounters/module-mounter.tsx -------------------------------------------------------------------------------- /packages/example/src/module-mounters/server-state-compat-module-mounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/module-mounters/server-state-compat-module-mounter.tsx -------------------------------------------------------------------------------- /packages/example/src/module-mounters/server-state-factory-module-mounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/module-mounters/server-state-factory-module-mounter.tsx -------------------------------------------------------------------------------- /packages/example/src/module-mounters/server-state-module-mounter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/module-mounters/server-state-module-mounter.tsx -------------------------------------------------------------------------------- /packages/example/src/polyfills.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/example/src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/server/index.ts -------------------------------------------------------------------------------- /packages/example/src/server/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/server/server.png -------------------------------------------------------------------------------- /packages/example/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/utils.ts -------------------------------------------------------------------------------- /packages/example/src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/src/worker.ts -------------------------------------------------------------------------------- /packages/example/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/tsconfig.eslint.json -------------------------------------------------------------------------------- /packages/example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/tsconfig.json -------------------------------------------------------------------------------- /packages/example/validate-build/__snapshots__/build.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/validate-build/__snapshots__/build.spec.ts.snap -------------------------------------------------------------------------------- /packages/example/validate-build/build.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/validate-build/build.spec.ts -------------------------------------------------------------------------------- /packages/example/validate-build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/packages/example/validate-build/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/core-ds/arui-scripts/HEAD/yarn.lock --------------------------------------------------------------------------------