Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. php bin/magento setup:static-content:deploy --theme Package/Theme
  2.  
  3. php bin/magento setup:static-content:deploy --theme Package/Theme --no-javascript --no-css --no-images --no-fonts --no-html --no-misc --no-html-minify
  4.  
  5. php bin/magento setup:static-content:deploy -h
  6.  
  7. Usage:
  8. setup:static-content:deploy [-d|--dry-run] [--no-javascript] [--no-css] [--no-less] [--no-images] [--no-fonts] [--no-html] [--no-misc] [--no-html-minify] [-t|--theme[="..."]] [--exclude-theme[="..."]] [-l|--language[="..."]] [--exclude-language[="..."]] [-a|--area[="..."]] [--exclude-area[="..."]] [-j|--jobs[="..."]] [--symlink-locale] [languages1] ... [languagesN]
  9.  
  10. Arguments:
  11. languages Space-separated list of ISO-636 language codes for which to output static view files.
  12.  
  13. Options:
  14. --dry-run (-d) If specified, then no files will be actually deployed.
  15. --no-javascript Do not deploy JavaScript files
  16. --no-css Do not deploy CSS files.
  17. --no-less Do not deploy LESS files.
  18. --no-images Do not deploy images.
  19. --no-fonts Do not deploy font files.
  20. --no-html Do not deploy HTML files.
  21. --no-misc Do not deploy other types of files (.md, .jbf, .csv, etc...).
  22. --no-html-minify Do not minify HTML files.
  23. --theme (-t) Generate static view files for only the specified themes. (default: ["all"]) (multiple values allowed)
  24. --exclude-theme Do not generate files for the specified themes. (default: ["none"]) (multiple values allowed)
  25. --language (-l) Generate files only for the specified languages. (default: ["all"]) (multiple values allowed)
  26. --exclude-language Do not generate files for the specified languages. (default: ["none"]) (multiple values allowed)
  27. --area (-a) Generate files only for the specified areas. (default: ["all"]) (multiple values allowed)
  28. --exclude-area Do not generate files for the specified areas. (default: ["none"]) (multiple values allowed)
  29. --jobs (-j) Enable parallel processing using the specified number of jobs. (default: 4)
  30. --symlink-locale Create symlinks for the files of those locales, which are passed for deployment, but have no customizations
  31. --help (-h) Display this help message
  32. --quiet (-q) Do not output any message
  33. --verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
  34. --version (-V) Display this application version
  35. --ansi Force ANSI output
  36. --no-ansi Disable ANSI output
  37. --no-interaction (-n) Do not ask any interactive question
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement