template.js 3.5 KB

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