Skip to content

Commit aaeca3d

Browse files
committed
chore: minor refactoring
1 parent 1f44f1f commit aaeca3d

File tree

3 files changed

+95
-9
lines changed

3 files changed

+95
-9
lines changed

.gitignore

+93-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Node.js dependencies
2-
node_modules
3-
npm-debug.log
4-
yarn-error.log
5-
yarn.lock
1+
# Node modules
2+
node_modules/
3+
4+
# Build output
5+
dist/
66

77
# Logs
88
logs
@@ -11,5 +11,92 @@ npm-debug.log*
1111
yarn-debug.log*
1212
yarn-error.log*
1313

14-
# macOS files
14+
# Runtime data
15+
pids
16+
*.pid
17+
*.seed
18+
*.pid.lock
19+
20+
# Directory for instrumented libs generated by jscoverage/JSCover
21+
lib-cov
22+
23+
# Coverage directory used by tools like istanbul
24+
coverage
25+
26+
# nyc test coverage
27+
.nyc_output
28+
29+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30+
.grunt
31+
32+
# Bower dependency directory (https://bower.io/)
33+
bower_components
34+
35+
# node-waf configuration
36+
.lock-wscript
37+
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
39+
build/Release
40+
41+
# Dependency directories
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# Optional npm cache directory
48+
.npm
49+
50+
# Optional eslint cache
51+
.eslintcache
52+
53+
# Optional REPL history
54+
.node_repl_history
55+
56+
# Output of 'npm pack'
57+
*.tgz
58+
59+
# Yarn Integrity file
60+
.yarn-integrity
61+
62+
# dotenv environment variables file
63+
.env
64+
.env.test
65+
66+
# parcel-bundler cache (https://parceljs.org/)
67+
.cache
68+
69+
# next.js build output
70+
.next
71+
72+
# nuxt.js build output
73+
.nuxt
74+
75+
# vuepress build output
76+
.vuepress/dist
77+
78+
# Serverless directories
79+
.serverless/
80+
81+
# FuseBox cache
82+
.fusebox/
83+
84+
# DynamoDB Local files
85+
.dynamodb/
86+
87+
# OS generated files
1588
.DS_Store
89+
.DS_Store?
90+
._*
91+
.Spotlight-V100
92+
.Trashes
93+
ehthumbs.db
94+
Thumbs.db
95+
96+
# Editor directories and files
97+
.idea
98+
.vscode
99+
*.swp
100+
*.swo
101+
*.sublime-workspace
102+
*.sublime-project

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ npx @hydra-js/cli create [-f|--force] <namespace>
2828
```bash
2929
cd <namespace>
3030
hydra serve
31-
hydra serve --port 3000
3231
```
3332

3433
*Specify npm script to run*

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)