├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── generators ├── app │ ├── index.js │ └── templates │ │ ├── config.json │ │ └── sample │ │ ├── Control_Minimal.js │ │ ├── Control_Starter.html │ │ ├── Item_Minimal.js │ │ └── Item_Starter.html ├── spsync-creds │ ├── index.js │ └── templates │ │ ├── _gulpfile.js │ │ ├── _package.json │ │ └── settings.js └── spsync │ ├── index.js │ └── templates │ ├── _gulpfile.js │ ├── _package.json │ └── settings.js ├── img └── generator-init.png └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | *.tgz -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.tgz -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/README.md -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/templates/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/app/templates/config.json -------------------------------------------------------------------------------- /generators/app/templates/sample/Control_Minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/app/templates/sample/Control_Minimal.js -------------------------------------------------------------------------------- /generators/app/templates/sample/Control_Starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/app/templates/sample/Control_Starter.html -------------------------------------------------------------------------------- /generators/app/templates/sample/Item_Minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/app/templates/sample/Item_Minimal.js -------------------------------------------------------------------------------- /generators/app/templates/sample/Item_Starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/app/templates/sample/Item_Starter.html -------------------------------------------------------------------------------- /generators/spsync-creds/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync-creds/index.js -------------------------------------------------------------------------------- /generators/spsync-creds/templates/_gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync-creds/templates/_gulpfile.js -------------------------------------------------------------------------------- /generators/spsync-creds/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync-creds/templates/_package.json -------------------------------------------------------------------------------- /generators/spsync-creds/templates/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync-creds/templates/settings.js -------------------------------------------------------------------------------- /generators/spsync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync/index.js -------------------------------------------------------------------------------- /generators/spsync/templates/_gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync/templates/_gulpfile.js -------------------------------------------------------------------------------- /generators/spsync/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync/templates/_package.json -------------------------------------------------------------------------------- /generators/spsync/templates/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/generators/spsync/templates/settings.js -------------------------------------------------------------------------------- /img/generator-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/img/generator-init.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estruyf/generator-displaytemplates/HEAD/package.json --------------------------------------------------------------------------------