├── .github └── workflows │ └── pr.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── __tests__ ├── compareAttributes.spec.ts ├── create.spec.ts ├── diff.spec.ts ├── h.spec.ts ├── pragma.spec.ts └── registerComponent.spec.ts ├── babel.config.js ├── index.ts ├── jest.config.js ├── package.json ├── pragma └── index.ts ├── readme.md ├── tsconfig-es6.json ├── tsconfig-esm.json ├── tsconfig-js.json ├── tsconfig-pragma.json ├── tsconfig-umd.json ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | demo 3 | .DS_Store 4 | .github 5 | __tests__ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/LICENSE -------------------------------------------------------------------------------- /__tests__/compareAttributes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/__tests__/compareAttributes.spec.ts -------------------------------------------------------------------------------- /__tests__/create.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/__tests__/create.spec.ts -------------------------------------------------------------------------------- /__tests__/diff.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/__tests__/diff.spec.ts -------------------------------------------------------------------------------- /__tests__/h.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/__tests__/h.spec.ts -------------------------------------------------------------------------------- /__tests__/pragma.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/__tests__/pragma.spec.ts -------------------------------------------------------------------------------- /__tests__/registerComponent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/__tests__/registerComponent.spec.ts -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/package.json -------------------------------------------------------------------------------- /pragma/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/pragma/index.ts -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/readme.md -------------------------------------------------------------------------------- /tsconfig-es6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/tsconfig-es6.json -------------------------------------------------------------------------------- /tsconfig-esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/tsconfig-esm.json -------------------------------------------------------------------------------- /tsconfig-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/tsconfig-js.json -------------------------------------------------------------------------------- /tsconfig-pragma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/tsconfig-pragma.json -------------------------------------------------------------------------------- /tsconfig-umd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/tsconfig-umd.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaltyAom/forsteri/HEAD/yarn.lock --------------------------------------------------------------------------------