This task suggests to take another name as node package for project, and rename the entire repository in acknowledgement of name change.
This also requires a new approach to how cli app run.... Suggestion to follow a blend of nextjs and sailsjs command approach.
# Install package globally
# ~ npm install sails -g
npm install <package-name> -g
# Create new wordpress theme
# ~ sails new
<package-name> new
# Start theme development
# ~ next dev
<package-name> dev
# or
<package-name> start
# Build theme for deployment
# ~ next build
<package-name> build
This task suggests to take another name as node package for project, and rename the entire repository in acknowledgement of name change.
This also requires a new approach to how cli app run.... Suggestion to follow a blend of
nextjsandsailsjscommand approach.