mirror of
https://github.com/primer/css.git
synced 2025-01-06 14:29:26 +03:00
17 lines
401 B
Bash
Executable File
17 lines
401 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo
|
|
echo "📦 Creating a new module..."
|
|
echo
|
|
echo " Protip: you can pass --force to skip the Yeoman conflict prompts."
|
|
echo " Otherwise, press 'y' for each one or 'a' for the first."
|
|
echo
|
|
|
|
pushd modules > /dev/null
|
|
../node_modules/.bin/yo ./generator-primer-module/app "$@"
|
|
popd > /dev/null
|
|
|
|
echo "✅ All set! Let me bootstrap that new module for ya..."
|
|
npm run bootstrap
|