├── .gitignore ├── LICENSE ├── README.md ├── amplify-plugin.json ├── commands ├── add.js ├── help.js ├── parameters.json.ejs ├── remove.js ├── template.json.ejs └── version.js ├── event-handlers ├── handle-PostInit.js ├── handle-PostPush.js ├── handle-PreInit.js └── handle-PrePush.js ├── index.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/README.md -------------------------------------------------------------------------------- /amplify-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/amplify-plugin.json -------------------------------------------------------------------------------- /commands/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/commands/add.js -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/parameters.json.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/commands/parameters.json.ejs -------------------------------------------------------------------------------- /commands/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/commands/remove.js -------------------------------------------------------------------------------- /commands/template.json.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/commands/template.json.ejs -------------------------------------------------------------------------------- /commands/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/commands/version.js -------------------------------------------------------------------------------- /event-handlers/handle-PostInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/event-handlers/handle-PostInit.js -------------------------------------------------------------------------------- /event-handlers/handle-PostPush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/event-handlers/handle-PostPush.js -------------------------------------------------------------------------------- /event-handlers/handle-PreInit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/event-handlers/handle-PreInit.js -------------------------------------------------------------------------------- /event-handlers/handle-PrePush.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/event-handlers/handle-PrePush.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r0zar/amplify-category-data-importer/HEAD/yarn.lock --------------------------------------------------------------------------------