├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.cjs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── __tests__ │ ├── e2e.test.ts │ └── sync.test.ts ├── index.ts └── sync.ts ├── tsconfig.json └── vite.config.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | singleQuote: true, 3 | arrowParens: 'avoid', 4 | }; 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/__tests__/e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/src/__tests__/e2e.test.ts -------------------------------------------------------------------------------- /src/__tests__/sync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/src/__tests__/sync.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sync.js'; 2 | -------------------------------------------------------------------------------- /src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/src/sync.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxdeviant/redux-persist-transform-encrypt/HEAD/vite.config.ts --------------------------------------------------------------------------------