@isense-development/test-npm 1.0.6 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -7
- package/package.json +4 -2
package/README.md
CHANGED
@@ -1,4 +1,19 @@
|
|
1
|
-
# How to
|
1
|
+
# How to configure npm packages
|
2
|
+
|
3
|
+
## Version Compatibility
|
4
|
+
|
5
|
+
| Quasar | @isense-development/test-npm |
|
6
|
+
|:-----------------------------|:--------------------------------------|
|
7
|
+
| ![Quasar v2.x][quasar_2_x] | ![@isense-development/test-npm v2.x][@isense-development/test-npm_2_x] |
|
8
|
+
|
9
|
+
[quasar_2_x]: https://img.shields.io/badge/version-2.x-blue
|
10
|
+
[@isense-development/test-npm_2_x]: https://img.shields.io/badge/version-2.x-blue
|
11
|
+
|
12
|
+
## Dependencies
|
13
|
+
|
14
|
+
![Axios v0.24.0][axios_0_24_0]
|
15
|
+
|
16
|
+
[axios_0_24_0]: https://img.shields.io/badge/axios-0.24.0-green
|
2
17
|
|
3
18
|
## How update packages?
|
4
19
|
|
@@ -9,12 +24,12 @@ Cheat Sheet: 6 Commands To Help You Update npm Packages
|
|
9
24
|
This cheat sheet will make it easy to safely update npm packages in your node application. It includes a list of commands that will help you keep up with
|
10
25
|
the latest updates and avoid breaking changes.
|
11
26
|
|
12
|
-
* Use npm list --depth 0 to list all the packages in your package directory
|
13
|
-
* Use npm audit to find out which of your npm dependencies are vulnerable.
|
14
|
-
* Use npm outdated to list the packages that are out of date with respect to what is installed in package.json
|
15
|
-
* Use npm update package_name to update an individual package that has already been installed.
|
16
|
-
* Use npm uninstall package_name and npm install package_name@version to revert to a specific version.
|
17
|
-
* Use npm cache clean --force to clear npm's cache of all the packages that have been installed.
|
27
|
+
* Use `npm list` --depth 0 to list all the packages in your package directory
|
28
|
+
* Use `npm audit` to find out which of your npm dependencies are vulnerable.
|
29
|
+
* Use `npm outdated` to list the packages that are out of date with respect to what is installed in package.json
|
30
|
+
* Use `npm update package_name` to update an individual package that has already been installed.
|
31
|
+
* Use `npm uninstall package_name` and npm install package_name@version to revert to a specific version.
|
32
|
+
* Use `npm cache clean --force` to clear npm's cache of all the packages that have been installed.
|
18
33
|
|
19
34
|
|
20
35
|
## copyfiles npm package
|
@@ -24,3 +39,4 @@ the latest updates and avoid breaking changes.
|
|
24
39
|
|
25
40
|
|
26
41
|
|
42
|
+
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@isense-development/test-npm",
|
3
|
-
"version": "
|
3
|
+
"version": "2.0.2",
|
4
4
|
"description": "test npm",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -11,7 +11,9 @@
|
|
11
11
|
"patch-release-git": "npm version patch && npm publish --access=public && git push --follow-tags"
|
12
12
|
},
|
13
13
|
"dependencies": {
|
14
|
-
"axios": "^0.24.0"
|
14
|
+
"axios": "^0.24.0"
|
15
|
+
},
|
16
|
+
"devDependencies": {
|
15
17
|
"@progress/kendo-datasource-vue-wrapper": "^2021.3.1109",
|
16
18
|
"@progress/kendo-dropdowns-vue-wrapper": "^2021.3.1109",
|
17
19
|
"@progress/kendo-grid-vue-wrapper": "^2021.3.1109",
|