template.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * grunt-init-amber
  3. * https://amber-lang.net/
  4. *
  5. * Copyright (c) 2013 Manfred Kroehnert, contributors
  6. * Licensed under the MIT license.
  7. */
  8. 'use strict';
  9. // Basic template description.
  10. exports.description = 'Create a web application based on Amber Smalltalk.';
  11. // Template-specific notes to be displayed before question prompts.
  12. exports.notes = ' _Project title_ should be a human-readable title.';
  13. // Template-specific notes to be displayed after question prompts.
  14. exports.after = 'You should now install project dependencies with _bower install_.' +
  15. ' Afterwards, start the development server with _./bower_components/amber/bin/amber serve_.' +
  16. ' Your application is then accessible via _http://localhost:4000/_';
  17. // Any existing file or directory matching this wildcard will cause a warning.
  18. exports.warnOn = '*';
  19. // The actual init template.
  20. exports.template = function(grunt, init, done) {
  21. var remembered = {};
  22. function rememberViaValidator(name) {
  23. var old = init.prompts[name].validator || function (line) {
  24. return true;
  25. };
  26. init.prompts[name].validator = old.length == 1 ? function (line) {
  27. remembered[name] = line;
  28. return old.call(this, line);
  29. } : function (line, next) {
  30. remembered[name] = line;
  31. return old.call(this, line, next);
  32. }; //apply would not work, .length is used to call it differently.
  33. }
  34. init.prompts.name.message= 'Name of the Amber application.';
  35. init.prompts.name.validator= function (line) { return /^[A-Z][A-Za-z0-9]*$/.test(line) };
  36. init.prompts.name.warning= 'Must be a valid class name: only alphanumeric and starting with an uppercase letter!';
  37. rememberViaValidator('name');
  38. init.process({type: 'amber'}, [
  39. // Prompt for these values.
  40. init.prompt('name', 'AcmeApp'),
  41. init.prompt('title', 'ACME Application'),
  42. init.prompt('description', 'The ACME Application.'),
  43. init.prompt('author_name'),
  44. init.prompt('author_email'),
  45. init.prompt('version'),
  46. init.prompt('repository'),
  47. {
  48. name: 'namespace',
  49. message: 'Namespace of the new Amber package.',
  50. altDefault: function(value, data, done) {
  51. value = 'amber-' + remembered.name.toLowerCase();
  52. done(null, value);
  53. },
  54. validator: /^[a-z][a-z0-9\-]*$/,
  55. warning: 'Only lowercase letters, numbers, and - are allowed in namespaces!'
  56. },
  57. init.prompt('author_url'),
  58. init.prompt('homepage'),
  59. init.prompt('bugs'),
  60. init.prompt('licenses', 'MIT')
  61. ], function(err, props) {
  62. // Files to copy (and process).
  63. var files = init.filesToCopy(props);
  64. // Add properly-named license files.
  65. init.addLicenseFiles(files, props.licenses);
  66. // Actually copy (and process) files.
  67. init.copyAndProcess(files, props, {noProcess: 'libs/**'});
  68. // Clean up non-npm props.
  69. delete props.namespace;
  70. // A few additional properties.
  71. props.keywords = ['Amber', 'Smalltalk'];
  72. props.devDependencies = {
  73. "grunt": "~0.4.0",
  74. "grunt-execute": "~0.2.1",
  75. "grunt-contrib-clean": "~0.5.0",
  76. "amber-dev": "0.0.3"
  77. };
  78. props.node_version = '>= 0.8.0';
  79. props.scripts = {
  80. "test": "grunt test"
  81. };
  82. // Generate package.json file, used by npm and grunt.
  83. init.writePackageJSON('package.json', props);
  84. // generate bower.json file
  85. grunt.file.write('bower.json', JSON.stringify({
  86. "name": props.name,
  87. "description": props.description,
  88. "version": props.version,
  89. "ignore": [
  90. "**/.*",
  91. "node_modules",
  92. "bower_components",
  93. "/test_runner.js",
  94. "test",
  95. "tests"
  96. ],
  97. "authors": [
  98. {
  99. "name": props.author_name,
  100. "email": props.author_email
  101. }
  102. ],
  103. "homepage": props.homepage,
  104. "main": props.main,
  105. "keywords": props.keywords,
  106. "license": props.licenses,
  107. "private": false,
  108. "dependencies": {
  109. "amber": "~0.12.4"
  110. }
  111. }, null, 4));
  112. // All done!
  113. done();
  114. });
  115. };