Toggle navigation
Toggle navigation
This project
Loading...
Sign in
I_Jemin
/
Node-Study
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
I_Jemin
2018-03-22 19:18:43 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0c595ee0be0e2706b008e75fdb2f4e0f4c758117
0c595ee0
1 parent
c2026f5b
Sematic Versioning
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
npm-demo/package.json
npm-demo/package.json
View file @
0c595ee
...
...
@@ -9,7 +9,11 @@
"author"
:
""
,
"license"
:
"ISC"
,
"dependencies"
:
{
"mongoose"
:
"^5.0.11"
,
"underscore"
:
"^1.8.3"
"mongoose"
:
"^5.0.11"
,
//
what
is
Caret
Symbole?
SemVer
-
Major.Minor.Patch
"underscore"
:
"^1.8.3"
//
Patch
-
bug
fix
,
Minor
-
New
feature
without
broke
Previous
API
Structure
,
Major
-
New
feature
change
structure
//
Caret
^
5.0
.
11
===
5
.x
,
if
there
was
just
minor
changes
,
install
with
updated
one
//
Tilda
~
1.8
.
3
===
1.8
.x
,
only
accept
patched
one
,
not
minor
or
magor
changed
version
//
if
don't
assgin
caret
or
tilda
,
package
won't
automatically
updated
}
}
...
...
Please
register
or
login
to post a comment