├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── push-dist.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.mjs ├── .template-lintrc.mjs ├── .try.mjs ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── addon-main.cjs ├── babel.config.cjs ├── babel.publish.config.cjs ├── config └── ember-cli-update.json ├── demo-app ├── app.gts ├── styles.css └── templates │ └── application.gts ├── eslint.config.mjs ├── index.html ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate.json ├── rollup.config.mjs ├── src └── index.ts ├── testem.cjs ├── tests ├── index.html ├── integration.gts ├── test-helper.ts └── unit.gts ├── tsconfig.json ├── tsconfig.publish.json ├── unpublished-development-types └── index.d.ts └── vite.config.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/push-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.github/workflows/push-dist.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /.template-lintrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.template-lintrc.mjs -------------------------------------------------------------------------------- /.try.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/.try.mjs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/RELEASE.md -------------------------------------------------------------------------------- /addon-main.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/addon-main.cjs -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /babel.publish.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/babel.publish.config.cjs -------------------------------------------------------------------------------- /config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/config/ember-cli-update.json -------------------------------------------------------------------------------- /demo-app/app.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/demo-app/app.gts -------------------------------------------------------------------------------- /demo-app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/demo-app/styles.css -------------------------------------------------------------------------------- /demo-app/templates/application.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/demo-app/templates/application.gts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/renovate.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/src/index.ts -------------------------------------------------------------------------------- /testem.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/testem.cjs -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/integration.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/tests/integration.gts -------------------------------------------------------------------------------- /tests/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/tests/test-helper.ts -------------------------------------------------------------------------------- /tests/unit.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/tests/unit.gts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/tsconfig.publish.json -------------------------------------------------------------------------------- /unpublished-development-types/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jelhan/ember-local-storage-decorator/HEAD/vite.config.mjs --------------------------------------------------------------------------------