├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── ChangeLog.md ├── LICENSE.md ├── README.md ├── Todos.md ├── app ├── USAGE ├── index.js ├── licenses │ ├── agpl.txt │ ├── apache.txt │ ├── artistic.txt │ ├── bsd-3-clause.txt │ ├── bsd.txt │ ├── cc0.txt │ ├── eclipse.txt │ ├── gpl-v2.txt │ ├── gpl-v3.txt │ ├── isc.txt │ ├── lgpl-v2.1.txt │ ├── lgpl-v3.txt │ ├── mit.txt │ ├── mozilla.txt │ ├── no-license.html │ ├── unlicense.txt │ └── wtfpl.txt ├── prompts.js ├── templates │ ├── .jshintrc │ ├── _root.less │ ├── changelog.yml │ ├── extension-initialproperties.js │ ├── extension-properties.js │ ├── extension.js │ ├── extension.png │ ├── extension.qext │ ├── gitattributes.txt │ ├── gitignore.txt │ ├── grunt │ │ ├── .jshintrc-dev │ │ ├── .jshintrc-release │ │ ├── Gruntfile.clean.js │ │ ├── Gruntfile.cleanempty.js │ │ ├── Gruntfile.compress.js │ │ ├── Gruntfile.copy.js │ │ ├── Gruntfile.js │ │ ├── Gruntfile.jshint.js │ │ ├── Gruntfile.less.js │ │ ├── Gruntfile.projectconfig.js │ │ ├── Gruntfile.replace.js │ │ ├── Gruntfile.uglify.js │ │ ├── _package.json │ │ ├── grunt-config.yml │ │ ├── gruntReplacements.yml │ │ ├── gruntReplacements_dev.yml │ │ └── gruntReplacements_release.yml │ ├── lib │ │ └── js │ │ │ └── extensionUtils.js │ ├── license.md │ ├── readme.md │ ├── style_Less.css │ ├── style_noLess.css │ ├── styles.less │ └── variables.less └── utils.js ├── package.json ├── resources ├── qsExtension_Generator_Questions.png └── qsExtension_Generator_YouTube.png └── tests ├── 00-test-load.js ├── 01-test-creation.js ├── 02-test-grunt.js └── utils.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | try/ 2 | node-modules/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/README.md -------------------------------------------------------------------------------- /Todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/Todos.md -------------------------------------------------------------------------------- /app/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/USAGE -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/index.js -------------------------------------------------------------------------------- /app/licenses/agpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/agpl.txt -------------------------------------------------------------------------------- /app/licenses/apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/apache.txt -------------------------------------------------------------------------------- /app/licenses/artistic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/artistic.txt -------------------------------------------------------------------------------- /app/licenses/bsd-3-clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/bsd-3-clause.txt -------------------------------------------------------------------------------- /app/licenses/bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/bsd.txt -------------------------------------------------------------------------------- /app/licenses/cc0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/cc0.txt -------------------------------------------------------------------------------- /app/licenses/eclipse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/eclipse.txt -------------------------------------------------------------------------------- /app/licenses/gpl-v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/gpl-v2.txt -------------------------------------------------------------------------------- /app/licenses/gpl-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/gpl-v3.txt -------------------------------------------------------------------------------- /app/licenses/isc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/isc.txt -------------------------------------------------------------------------------- /app/licenses/lgpl-v2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/lgpl-v2.1.txt -------------------------------------------------------------------------------- /app/licenses/lgpl-v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/lgpl-v3.txt -------------------------------------------------------------------------------- /app/licenses/mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/mit.txt -------------------------------------------------------------------------------- /app/licenses/mozilla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/mozilla.txt -------------------------------------------------------------------------------- /app/licenses/no-license.html: -------------------------------------------------------------------------------- 1 | 2 | Copyright [year] [fullname] 3 | -------------------------------------------------------------------------------- /app/licenses/unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/unlicense.txt -------------------------------------------------------------------------------- /app/licenses/wtfpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/licenses/wtfpl.txt -------------------------------------------------------------------------------- /app/prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/prompts.js -------------------------------------------------------------------------------- /app/templates/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/.jshintrc -------------------------------------------------------------------------------- /app/templates/_root.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/_root.less -------------------------------------------------------------------------------- /app/templates/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/changelog.yml -------------------------------------------------------------------------------- /app/templates/extension-initialproperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/extension-initialproperties.js -------------------------------------------------------------------------------- /app/templates/extension-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/extension-properties.js -------------------------------------------------------------------------------- /app/templates/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/extension.js -------------------------------------------------------------------------------- /app/templates/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/extension.png -------------------------------------------------------------------------------- /app/templates/extension.qext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/extension.qext -------------------------------------------------------------------------------- /app/templates/gitattributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/gitattributes.txt -------------------------------------------------------------------------------- /app/templates/gitignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/gitignore.txt -------------------------------------------------------------------------------- /app/templates/grunt/.jshintrc-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/.jshintrc-dev -------------------------------------------------------------------------------- /app/templates/grunt/.jshintrc-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/.jshintrc-release -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.clean.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.cleanempty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.cleanempty.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.compress.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.copy.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.jshint.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.less.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.projectconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.projectconfig.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.replace.js -------------------------------------------------------------------------------- /app/templates/grunt/Gruntfile.uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/Gruntfile.uglify.js -------------------------------------------------------------------------------- /app/templates/grunt/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/_package.json -------------------------------------------------------------------------------- /app/templates/grunt/grunt-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/grunt-config.yml -------------------------------------------------------------------------------- /app/templates/grunt/gruntReplacements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/gruntReplacements.yml -------------------------------------------------------------------------------- /app/templates/grunt/gruntReplacements_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/gruntReplacements_dev.yml -------------------------------------------------------------------------------- /app/templates/grunt/gruntReplacements_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/grunt/gruntReplacements_release.yml -------------------------------------------------------------------------------- /app/templates/lib/js/extensionUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/lib/js/extensionUtils.js -------------------------------------------------------------------------------- /app/templates/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/license.md -------------------------------------------------------------------------------- /app/templates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/readme.md -------------------------------------------------------------------------------- /app/templates/style_Less.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/style_Less.css -------------------------------------------------------------------------------- /app/templates/style_noLess.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/style_noLess.css -------------------------------------------------------------------------------- /app/templates/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/styles.less -------------------------------------------------------------------------------- /app/templates/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/templates/variables.less -------------------------------------------------------------------------------- /app/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/app/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/package.json -------------------------------------------------------------------------------- /resources/qsExtension_Generator_Questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/resources/qsExtension_Generator_Questions.png -------------------------------------------------------------------------------- /resources/qsExtension_Generator_YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/resources/qsExtension_Generator_YouTube.png -------------------------------------------------------------------------------- /tests/00-test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/tests/00-test-load.js -------------------------------------------------------------------------------- /tests/01-test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/tests/01-test-creation.js -------------------------------------------------------------------------------- /tests/02-test-grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/tests/02-test-grunt.js -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanwalther/generator-qsExtension/HEAD/tests/utils.js --------------------------------------------------------------------------------