diff --git a/.gitignore b/.gitignore index 8d31cf6..426cfec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,8 @@ -# Node.js dependencies -node_modules -npm-debug.log -yarn-error.log -yarn.lock +# Node modules +node_modules/ + +# Build output +dist/ # Logs logs @@ -11,5 +11,92 @@ npm-debug.log* yarn-debug.log* yarn-error.log* -# macOS files +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# OS generated files .DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Editor directories and files +.idea +.vscode +*.swp +*.swo +*.sublime-workspace +*.sublime-project diff --git a/README.md b/README.md index cc5ec92..551e538 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,6 @@ npx @hydra-js/cli create [-f|--force] ```bash cd hydra serve -hydra serve --port 3000 ``` *Specify npm script to run* diff --git a/package-lock.json b/package-lock.json index 8c7e2e9..3612d89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hydra-js/cli", - "version": "1.0.0-alpha.2", + "version": "1.0.0-alpha.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@hydra-js/cli", - "version": "1.0.0-alpha.2", + "version": "1.0.0-alpha.3", "license": "MIT", "dependencies": { "commander": "^12.1.0",