Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #!/usr/bin/env node
  2. /*
  3. Licensed to the Apache Software Foundation (ASF) under one
  4. or more contributor license agreements. See the NOTICE file
  5. distributed with this work for additional information
  6. regarding copyright ownership. The ASF licenses this file
  7. to you under the Apache License, Version 2.0 (the
  8. "License"); you may not use this file except in compliance
  9. with the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing,
  12. software distributed under the License is distributed on an
  13. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. KIND, either express or implied. See the License for the
  15. specific language governing permissions and limitations
  16. under the License.
  17. */
  18. /*
  19. * create a Cordova/iOS project
  20. *
  21. * USAGE
  22. * ./create <path_to_new_project> <package_name> <project_name>
  23. *
  24. * EXAMPLE
  25. * ./create ~/Desktop/radness org.apache.cordova.radness Radness
  26. */
  27. var path = require('path');
  28. var ConfigParser = require('cordova-common').ConfigParser;
  29. var Api = require('./templates/scripts/cordova/Api');
  30. var argv = require('nopt')({
  31. help: Boolean,
  32. cli: Boolean,
  33. shared: Boolean, // alias for --link
  34. link: Boolean
  35. }, { d: '--verbose' });
  36. var projectPath = argv.argv.remain[0];
  37. if (argv.help || !projectPath) {
  38. console.log('Usage: $0 [--link] [--cli] <path_to_new_project> <package_name> <project_name> [<project_template_dir>]');
  39. console.log(' --link (optional): Link directly against the shared copy of the CordovaLib instead of a copy of it.');
  40. console.log(' --cli (optional): Use the CLI-project template.');
  41. console.log(' <path_to_new_project>: Path to your new Cordova iOS project');
  42. console.log(' <package_name>: Package name, following reverse-domain style convention');
  43. console.log(' <project_name>: Project name');
  44. console.log(' <project_template_dir>: Path to project template (override).');
  45. process.exit(0);
  46. }
  47. // use default configuration file from project template
  48. var config = new ConfigParser(path.resolve(__dirname, 'templates/project/__PROJECT_NAME__/config.xml'));
  49. // apply overrides (package and project names
  50. if (argv.argv.remain[1]) config.setPackageName(argv.argv.remain[1]);
  51. if (argv.argv.remain[2]) config.setName(argv.argv.remain[2]);
  52. var options = {
  53. cli: argv.cli,
  54. link: argv.link || argv.shared,
  55. customTemplate: argv.argv.remain[3]
  56. };
  57. require('./templates/scripts/cordova/loggingHelper').adjustLoggerLevel(argv);
  58. Api.createPlatform(projectPath, config, options);