gitextract_bpdac_6z/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── build-and-publish.yml │ ├── codeql-analysis.yml │ └── gated-build.yml ├── .gitignore ├── .npmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.ko.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure-gated-build.yml ├── index.ts ├── karma.conf.headless.js ├── karma.conf.js ├── package.json ├── sample/ │ ├── counterApp/ │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ ├── appCounter.js │ │ │ ├── counter.js │ │ │ ├── index.js │ │ │ └── store/ │ │ │ ├── counterReducer.js │ │ │ ├── global.actions.js │ │ │ └── local.actions.js │ │ ├── webpack.config.js │ │ └── webpack.config.mf.js │ ├── shell/ │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.js │ │ └── webpack.config.js │ └── todoApp/ │ ├── .babelrc │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── addTodo.js │ │ ├── index.js │ │ ├── store/ │ │ │ ├── todo.actions.js │ │ │ └── todoReducer.js │ │ ├── todo.js │ │ └── todoList.js │ ├── webpack.config.js │ └── webpack.config.mf.js ├── src/ │ ├── actions/ │ │ ├── action.interface.ts │ │ └── index.ts │ ├── common/ │ │ ├── abstract.logger.ts │ │ ├── console.logger.ts │ │ └── interfaces/ │ │ ├── global.store.interface.ts │ │ └── index.ts │ ├── global.store.ts │ └── middlewares/ │ └── action.logger.ts ├── test/ │ ├── global.store.tests.ts │ └── middlewares/ │ └── action.logger.tests.ts └── tsconfig.json