Skip to content
Snippets Groups Projects
Commit b27660bf authored by Avery Jacobsen's avatar Avery Jacobsen :8ball:
Browse files

Correctly removed counter feature and changed minimal-app to inventory-app,...

Correctly removed counter feature and changed minimal-app to inventory-app, however run lint is not working correctly and couldn't find a solution.
parent 2ebbef94
Branches
Tags
1 merge request!1Correctly removed counter feature and changed minimal-app to inventory-app,...
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
......@@ -9,6 +9,9 @@
"version": "1.0.0",
"hasInstallScript": true,
"license": "UNLICENSED",
"dependencies": {
"caniuse-lite": "^1.0.30001524"
},
"devDependencies": {
"ghooks": "^2.0.4",
"npm-run-all": "^4.1.5"
......@@ -55,6 +58,25 @@
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/caniuse-lite": {
"version": "1.0.30001524",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz",
"integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/browserslist"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
]
},
"node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
......@@ -883,9 +905,9 @@
}
},
"node_modules/semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"version": "5.7.2",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"dev": true,
"bin": {
"semver": "bin/semver"
......@@ -1138,6 +1160,11 @@
"get-intrinsic": "^1.0.2"
}
},
"caniuse-lite": {
"version": "1.0.30001524",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001524.tgz",
"integrity": "sha512-Jj917pJtYg9HSJBF95HVX3Cdr89JUyLT4IZ8SvM5aDRni95swKgYi3TgYLH5hnGfPE/U1dg6IfZ50UsIlLkwSA=="
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
......@@ -1752,9 +1779,9 @@
}
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"version": "5.7.2",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"dev": true
},
"shebang-command": {
......
{
"name": "@unlsoft/starter-code",
"version": "1.0.0",
"description": "A project skeleton to be used as starter code for labs and homework.",
"description": "A store/ordering based app that adds items into the users inventory.",
"private": true,
"license": "UNLICENSED",
"scripts": {
"postinstall:stylelint-config": "cd stylelint-config && npm install",
"postinstall:eslint-config": "cd eslint-config && npm install",
"postinstall:app": "cd minimal-app && npm install",
"postinstall:app": "cd inventory-app && npm install",
"postinstall": "run-s postinstall:**",
"lint:app": "cd minimal-app && npm run lint",
"lint:app": "cd inventory-app && npm run lint",
"lint": "run-s --continue-on-error lint:**",
"test-once:app": "cd minimal-app && npm run test-once",
"test-once:app": "cd inventory-app && npm run test-once",
"test-once": "run-s --continue-on-error test-once:**",
"test": "run-s test-once",
"start": "cd minimal-app && npm run start",
"build:app": "cd minimal-app && npm run build",
"start": "cd inventory-app && npm run start",
"build:app": "cd inventory-app && npm run build",
"build": "run-s build:**"
},
"devDependencies": {
......@@ -26,5 +26,8 @@
"ghooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"caniuse-lite": "^1.0.30001524"
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment