├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── rollup.config.js ├── src ├── index.tsx ├── solid.tsx └── utils │ ├── removeNonUnit.ts │ └── removeStorePrefix.ts ├── test └── index.test.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules 4 | dist 5 | .idea 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/solid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/src/solid.tsx -------------------------------------------------------------------------------- /src/utils/removeNonUnit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/src/utils/removeNonUnit.ts -------------------------------------------------------------------------------- /src/utils/removeStorePrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/src/utils/removeStorePrefix.ts -------------------------------------------------------------------------------- /test/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/test/index.test.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kelin2025/effector-factorio/HEAD/tsconfig.json --------------------------------------------------------------------------------