nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

View File

@@ -1,27 +1,28 @@
{
"_from": "import-local@^1.0.0",
"_id": "import-local@1.0.0",
"_from": "import-local@^2.0.0",
"_id": "import-local@2.0.0",
"_inBundle": false,
"_integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==",
"_integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==",
"_location": "/import-local",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "import-local@^1.0.0",
"raw": "import-local@^2.0.0",
"name": "import-local",
"escapedName": "import-local",
"rawSpec": "^1.0.0",
"rawSpec": "^2.0.0",
"saveSpec": null,
"fetchSpec": "^1.0.0"
"fetchSpec": "^2.0.0"
},
"_requiredBy": [
"/webpack-cli",
"/webpack-dev-server"
],
"_resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz",
"_shasum": "5e4ffdc03f4fe6c009c6729beb29631c2f8227bc",
"_spec": "import-local@^1.0.0",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\webpack-dev-server",
"_resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz",
"_shasum": "55070be38a5993cf18ef6db7e961f5bee5c5a09d",
"_spec": "import-local@^2.0.0",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\webpack-cli",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
@@ -35,20 +36,20 @@
},
"bundleDependencies": false,
"dependencies": {
"pkg-dir": "^2.0.0",
"pkg-dir": "^3.0.0",
"resolve-cwd": "^2.0.0"
},
"deprecated": false,
"description": "Let a globally installed package use a locally installed version of itself if available",
"devDependencies": {
"ava": "*",
"cpy": "^6.0.0",
"cpy": "^7.0.1",
"del": "^3.0.0",
"execa": "^0.8.0",
"execa": "^0.11.0",
"xo": "*"
},
"engines": {
"node": ">=4"
"node": ">=6"
},
"files": [
"index.js",
@@ -74,5 +75,10 @@
"scripts": {
"test": "xo && ava"
},
"version": "1.0.0"
"version": "2.0.0",
"xo": {
"ignores": [
"fixtures"
]
}
}

View File

@@ -2,7 +2,7 @@
> Let a globally installed package use a locally installed version of itself if available
Useful for CLI tools that want to defer to the user's locally installed version when available, but still work if it's not installed locally. For example, [AVA](http://ava.li) and [XO](https://github.com/sindresorhus/xo) uses this method.
Useful for CLI tools that want to defer to the user's locally installed version when available, but still work if it's not installed locally. For example, [AVA](http://ava.li) and [XO](https://github.com/xojs/xo) uses this method.
## Install