├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── setup_puppeteer.sh ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest-puppeteer.config.js ├── jest.config.js ├── package.json ├── scripts └── next-update.sh ├── src ├── __tests__ │ ├── .gitignore │ ├── __apps__ │ │ ├── npm-basic │ │ │ ├── next-env.d.ts │ │ │ ├── next.config.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── pages │ │ │ │ └── .keep │ │ │ └── tsconfig.json │ │ ├── pnpm │ │ │ ├── components │ │ │ │ ├── AnotherBox.jsx │ │ │ │ ├── AnotherBox.module.scss │ │ │ │ ├── Box.jsx │ │ │ │ └── Box.module.css │ │ │ ├── next-env.d.ts │ │ │ ├── next.config.js │ │ │ ├── package.json │ │ │ ├── pnpm-lock.yaml │ │ │ └── tsconfig.json │ │ ├── swc │ │ │ ├── app │ │ │ │ ├── next-env.d.ts │ │ │ │ ├── next.config.js │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── with-app-dir │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── layout.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── next-env.d.ts │ │ │ │ ├── next.config.js │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── yarn-workspaces-symlinks │ │ │ ├── app │ │ │ │ ├── next-env.d.ts │ │ │ │ ├── next.config.js │ │ │ │ ├── package.json │ │ │ │ └── tsconfig.json │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ └── yarn-workspaces │ │ │ ├── app │ │ │ ├── next-env.d.ts │ │ │ ├── next.config.js │ │ │ ├── package.json │ │ │ ├── pages │ │ │ │ └── .keep │ │ │ └── tsconfig.json │ │ │ ├── package.json │ │ │ └── yarn.lock │ ├── __files__ │ │ ├── components │ │ │ ├── AnotherBox.jsx │ │ │ ├── AnotherBox.module.scss │ │ │ ├── Box.jsx │ │ │ └── Box.module.css │ │ └── pages │ │ │ ├── _app.jsx │ │ │ ├── index.jsx │ │ │ ├── test-css-module.jsx │ │ │ ├── test-global-css.jsx │ │ │ ├── test-global-scss.jsx │ │ │ ├── test-local-module.jsx │ │ │ ├── test-local-typescript-module.tsx │ │ │ ├── test-npm-module.jsx │ │ │ └── test-scss-module.jsx │ ├── __packages__ │ │ ├── shared-ts │ │ │ ├── components │ │ │ │ └── Subtitle.tsx │ │ │ ├── main.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── utils │ │ │ │ └── calc.ts │ │ ├── shared-ui │ │ │ ├── components │ │ │ │ ├── Alert.jsx │ │ │ │ ├── Alert.scss │ │ │ │ ├── Button.jsx │ │ │ │ ├── Button.module.css │ │ │ │ ├── Input.jsx │ │ │ │ ├── Input.module.scss │ │ │ │ ├── Textarea.css │ │ │ │ └── Textarea.jsx │ │ │ ├── main.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── styles │ │ │ │ ├── _variables.scss │ │ │ │ ├── another-global.scss │ │ │ │ ├── global.css │ │ │ │ └── yet-another-global.sass │ │ └── shared │ │ │ ├── main.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── utils │ │ │ ├── calc.js │ │ │ └── substract.mjs │ ├── helpers.test.js │ ├── integrations.test.js │ └── setup.js └── next-transpile-modules.js ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [martpie] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/setup_puppeteer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/.github/workflows/setup_puppeteer.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/README.md -------------------------------------------------------------------------------- /jest-puppeteer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/jest-puppeteer.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/package.json -------------------------------------------------------------------------------- /scripts/next-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/scripts/next-update.sh -------------------------------------------------------------------------------- /src/__tests__/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/.gitignore -------------------------------------------------------------------------------- /src/__tests__/__apps__/npm-basic/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/npm-basic/next-env.d.ts -------------------------------------------------------------------------------- /src/__tests__/__apps__/npm-basic/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/npm-basic/next.config.js -------------------------------------------------------------------------------- /src/__tests__/__apps__/npm-basic/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/npm-basic/package-lock.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/npm-basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/npm-basic/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/npm-basic/pages/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__tests__/__apps__/npm-basic/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/npm-basic/tsconfig.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/components/AnotherBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/components/AnotherBox.jsx -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/components/AnotherBox.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/components/AnotherBox.module.scss -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/components/Box.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/components/Box.jsx -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/components/Box.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/components/Box.module.css -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/next-env.d.ts -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/next.config.js -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/__tests__/__apps__/pnpm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/pnpm/tsconfig.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/swc/app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/swc/app/next-env.d.ts -------------------------------------------------------------------------------- /src/__tests__/__apps__/swc/app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/swc/app/next.config.js -------------------------------------------------------------------------------- /src/__tests__/__apps__/swc/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/swc/app/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/swc/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/swc/app/tsconfig.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/swc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/swc/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/swc/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/swc/yarn.lock -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/app/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/app/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/app/app/layout.tsx -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/app/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/app/app/page.tsx -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/app/next-env.d.ts -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/app/next.config.js -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/app/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/app/tsconfig.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/with-app-dir/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/with-app-dir/yarn.lock -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces-symlinks/app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces-symlinks/app/next-env.d.ts -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces-symlinks/app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces-symlinks/app/next.config.js -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces-symlinks/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces-symlinks/app/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces-symlinks/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces-symlinks/app/tsconfig.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces-symlinks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces-symlinks/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces-symlinks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces-symlinks/yarn.lock -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces/app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces/app/next-env.d.ts -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces/app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces/app/next.config.js -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces/app/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces/app/pages/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces/app/tsconfig.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces/package.json -------------------------------------------------------------------------------- /src/__tests__/__apps__/yarn-workspaces/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__apps__/yarn-workspaces/yarn.lock -------------------------------------------------------------------------------- /src/__tests__/__files__/components/AnotherBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/components/AnotherBox.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/components/AnotherBox.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/components/AnotherBox.module.scss -------------------------------------------------------------------------------- /src/__tests__/__files__/components/Box.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/components/Box.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/components/Box.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/components/Box.module.css -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/_app.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/index.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/test-css-module.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/test-css-module.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/test-global-css.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/test-global-css.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/test-global-scss.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/test-global-scss.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/test-local-module.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/test-local-module.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/test-local-typescript-module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/test-local-typescript-module.tsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/test-npm-module.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/test-npm-module.jsx -------------------------------------------------------------------------------- /src/__tests__/__files__/pages/test-scss-module.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__files__/pages/test-scss-module.jsx -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ts/components/Subtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ts/components/Subtitle.tsx -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ts/main.js: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ts/package-lock.json -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ts/package.json -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ts/utils/calc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ts/utils/calc.ts -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Alert.jsx -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Alert.scss -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Button.jsx -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Button.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Button.module.css -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Input.jsx -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Input.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Input.module.scss -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Textarea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Textarea.css -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/components/Textarea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/components/Textarea.jsx -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/main.js: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/package-lock.json -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/package.json -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/styles/_variables.scss: -------------------------------------------------------------------------------- 1 | $background: red; 2 | -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/styles/another-global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/styles/another-global.scss -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/styles/global.css -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared-ui/styles/yet-another-global.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared-ui/styles/yet-another-global.sass -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared/main.js: -------------------------------------------------------------------------------- 1 | export const multiply = (a, b) => a * b; 2 | -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared/package-lock.json -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared/package.json -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared/utils/calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/__packages__/shared/utils/calc.js -------------------------------------------------------------------------------- /src/__tests__/__packages__/shared/utils/substract.mjs: -------------------------------------------------------------------------------- 1 | export const substract = (a, b) => a - b; 2 | -------------------------------------------------------------------------------- /src/__tests__/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/helpers.test.js -------------------------------------------------------------------------------- /src/__tests__/integrations.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/integrations.test.js -------------------------------------------------------------------------------- /src/__tests__/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/__tests__/setup.js -------------------------------------------------------------------------------- /src/next-transpile-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/src/next-transpile-modules.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martpie/next-transpile-modules/HEAD/yarn.lock --------------------------------------------------------------------------------