diff --git a/ng2-components/ng2-alfresco-documentlist/package.json b/ng2-components/ng2-alfresco-documentlist/package.json index 850f54061b..016b765f87 100644 --- a/ng2-components/ng2-alfresco-documentlist/package.json +++ b/ng2-components/ng2-alfresco-documentlist/package.json @@ -12,12 +12,14 @@ "tslint": "npm run tslint-src && npm run tslint-root", "tslint-src": "tslint -c tslint.json src/**/*.ts, src/**/*.spec.ts ", "tslint-root": "tslint -c tslint.json *.ts", - "copytemplates": "npm run copy-html-css && npm run copy-i18n", - "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"", + "copytemplates": "npm run copy-html-css && npm run copy-i18n && npm run copy-images", + "copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\" \"npm run copy-images:w\"", "copy-html-css": "cpx './src/**/*.{html,css}' dist/src", "copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w", "copy-i18n": "cpx './i18n/**/*.json' dist/i18n", "copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w", + "copy-images": "cpx './src/**/*.{png,jpg,gif}' dist/src", + "copy-images:w": "cpx './src/**/*.{png,jpg,gif}' dist/src -w", "tsc": "tsc", "tsc:w": "tsc -w", "pretest": "npm run build",