├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── agilecss.config.ts ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ └── Hello │ │ └── Hello.tsx ├── index.css ├── main.tsx ├── styles │ └── agile-css.css ├── types │ ├── env.d.ts │ ├── global.d.ts │ └── reset.d.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | VITE_TEST=AAA11 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/README.md -------------------------------------------------------------------------------- /agilecss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/agilecss.config.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/package.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Hello/Hello.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/components/Hello/Hello.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/styles/agile-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/styles/agile-css.css -------------------------------------------------------------------------------- /src/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/types/env.d.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/reset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/src/types/reset.d.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare const process; 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunghg255/agile-css-atomic/HEAD/vite.config.ts --------------------------------------------------------------------------------