├── .github └── workflows │ ├── publish.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── LICENSE ├── assets └── cover.png ├── jest.config.js ├── lib ├── cli.ts ├── controller.ts ├── envConfig.ts ├── helper.ts ├── hint.ts ├── interfaces │ ├── account.interface.ts │ └── board.interface.ts ├── models │ ├── board.ts │ ├── color.ts │ ├── spacing.ts │ └── typography.ts ├── service.ts └── storage.ts ├── package.json ├── readme.md ├── test ├── color.test.ts ├── controller.test.ts ├── helper.test.ts ├── service.test.ts ├── spacing.test.ts ├── storage.test.ts └── typography.test.ts ├── tsconfig.json └── tslint.json /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | dist 4 | .lock 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/assets/cover.png -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/cli.ts -------------------------------------------------------------------------------- /lib/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/controller.ts -------------------------------------------------------------------------------- /lib/envConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/envConfig.ts -------------------------------------------------------------------------------- /lib/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/helper.ts -------------------------------------------------------------------------------- /lib/hint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/hint.ts -------------------------------------------------------------------------------- /lib/interfaces/account.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/interfaces/account.interface.ts -------------------------------------------------------------------------------- /lib/interfaces/board.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/interfaces/board.interface.ts -------------------------------------------------------------------------------- /lib/models/board.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/models/board.ts -------------------------------------------------------------------------------- /lib/models/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/models/color.ts -------------------------------------------------------------------------------- /lib/models/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/models/spacing.ts -------------------------------------------------------------------------------- /lib/models/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/models/typography.ts -------------------------------------------------------------------------------- /lib/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/service.ts -------------------------------------------------------------------------------- /lib/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/lib/storage.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/readme.md -------------------------------------------------------------------------------- /test/color.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/test/color.test.ts -------------------------------------------------------------------------------- /test/controller.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/test/controller.test.ts -------------------------------------------------------------------------------- /test/helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/test/helper.test.ts -------------------------------------------------------------------------------- /test/service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/test/service.test.ts -------------------------------------------------------------------------------- /test/spacing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/test/spacing.test.ts -------------------------------------------------------------------------------- /test/storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/test/storage.test.ts -------------------------------------------------------------------------------- /test/typography.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/test/typography.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/B3nnyL/figgo/HEAD/tslint.json --------------------------------------------------------------------------------