Advertisement
Guest User

bar

a guest
Oct 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <profiles>
  2. <profile>
  3. <id>platform-windows</id>
  4. <activation>
  5. <os>
  6. <family>windows</family>
  7. </os>
  8. </activation>
  9. <properties>
  10. <npm.executable>npm.cmd</npm.executable>
  11. <npm.build.command>build</npm.build.command>
  12. </properties>
  13. </profile>
  14. <profile>
  15. <id>platform-unix</id>
  16. <activation>
  17. <os>
  18. <family>unix</family>
  19. </os>
  20. </activation>
  21. <properties>
  22. <npm.executable>npm</npm.executable>
  23. <npm.build.command>build</npm.build.command>
  24. </properties>
  25. </profile>
  26. <profile>
  27. <id>platform-default</id>
  28. <activation>
  29. <activeByDefault>true</activeByDefault>
  30. </activation>
  31. <properties>
  32. <npm.executable>npm</npm.executable>
  33. <npm.build.command>build</npm.build.command>
  34. </properties>
  35. </profile>
  36. </profiles>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement