template.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. init.prompts.name.message= 'Name of the Amber application.';
  22. init.prompts.name.validator= /^[A-Z][A-Za-z0-9]*$/;
  23. init.prompts.name.warning= 'Must be a valid class name: only alphanumeric and starting with an uppercase letter!';
  24. init.process({type: 'amber'}, [
  25. // Prompt for these values.
  26. init.prompt('name', 'AmberApplication'),
  27. init.prompt('title'),
  28. init.prompt('description', 'Amber Application.'),
  29. {
  30. name: 'namespace',
  31. message: 'Namespace of the new Amber package.',
  32. validator: /^[a-z][a-z0-9\-]*$/,
  33. warning: 'Only lowercase letters, numbers, and - are allowed in namespaces!'
  34. },
  35. {
  36. name: 'amber_version',
  37. default: '>=0.12.4',
  38. message: 'Version of Amber to use. Must be >=0.12.4'
  39. },
  40. init.prompt('version'),
  41. init.prompt('repository'),
  42. init.prompt('homepage'),
  43. init.prompt('bugs'),
  44. init.prompt('licenses', 'MIT'),
  45. init.prompt('author_name'),
  46. init.prompt('author_email'),
  47. init.prompt('author_url')
  48. ], function(err, props) {
  49. // Files to copy (and process).
  50. var files = init.filesToCopy(props);
  51. // Add properly-named license files.
  52. init.addLicenseFiles(files, props.licenses);
  53. // Actually copy (and process) files.
  54. init.copyAndProcess(files, props, {noProcess: 'libs/**'});
  55. // Clean up non-npm props.
  56. delete props.namespace;
  57. var amberVersion = props.amber_version;
  58. delete props.amber_version;
  59. // Add '~' at the beginning if version is without operation (starts with number)
  60. if (amberVersion.match(/^\d/)) {
  61. amberVersion = '~' + amberVersion;
  62. }
  63. // A few additional properties.
  64. props.keywords = ['Amber', 'Smalltalk'];
  65. props.devDependencies = {
  66. "grunt": "~0.4.0",
  67. "grunt-execute": "~0.2.1",
  68. "grunt-contrib-clean": "~0.5.0",
  69. "amber-dev": "0.0.3"
  70. };
  71. props.node_version = '>= 0.8.0';
  72. props.scripts = {
  73. "test": "grunt test"
  74. };
  75. // Generate package.json file, used by npm and grunt.
  76. init.writePackageJSON('package.json', props);
  77. // generate bower.json file
  78. grunt.file.write('bower.json', JSON.stringify({
  79. "name": props.name,
  80. "description": props.description,
  81. "version": props.version,
  82. "ignore": [
  83. "**/.*",
  84. "node_modules",
  85. "bower_components",
  86. "/test_runner.js",
  87. "test",
  88. "tests"
  89. ],
  90. "authors": [
  91. {
  92. "name": props.author_name,
  93. "email": props.author_email
  94. }
  95. ],
  96. "homepage": props.homepage,
  97. "main": props.main,
  98. "keywords": props.keywords,
  99. "license": props.licenses,
  100. "private": false,
  101. "dependencies": {
  102. "amber": amberVersion
  103. }
  104. }, null, 4));
  105. // All done!
  106. done();
  107. });
  108. };