-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(security-issues): Updating dependencies to resolve security vuln…
…erabilities (#5)
- Loading branch information
1 parent
777efd4
commit 44c1442
Showing
7 changed files
with
4,557 additions
and
5,007 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"presets": ["env"] | ||
"presets": ["@babel/preset-env"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
node_modules/ | ||
public/dist/ | ||
.idea/ | ||
.vs/ | ||
.cache/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8 | ||
12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
{ | ||
"name": "blocky-test", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "A blocky puzzle for software engineers.", | ||
"license": "UNLICENSED", | ||
"main": "src/index.js", | ||
"scripts": { | ||
"build": "webpack --mode=production", | ||
"start": "webpack-dev-server --mode=development --open", | ||
"start": "parcel public/index.html --port 9100", | ||
"build": "parcel build public/index.html", | ||
"test": "jest", | ||
"format": "prettier --write 'app/**/*.{css,js}'" | ||
"format": "prettier --write 'src/**/*.{css,js}'" | ||
}, | ||
"devDependencies": { | ||
"babel-core": "^6.26.0", | ||
"babel-jest": "^22.4.1", | ||
"babel-loader": "^7.1.4", | ||
"babel-preset-env": "^1.6.1", | ||
"css-loader": "^0.28.10", | ||
"jest": "^22.4.2", | ||
"prettier": "^1.1.0", | ||
"regenerator-runtime": "^0.11.1", | ||
"style-loader": "^0.20.3", | ||
"webpack": "^4.1.1", | ||
"webpack-cli": "^2.0.11", | ||
"webpack-dev-server": "^3.1.1" | ||
}, | ||
"license": "UNLICENSED" | ||
"@babel/core": "^7.5.5", | ||
"@babel/preset-env": "^7.5.5", | ||
"jest": "^24.8.0", | ||
"parcel-bundler": "^1.12.3", | ||
"prettier": "^1.18.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
<html> | ||
|
||
<head> | ||
<title>Clickly blocky test</title> | ||
<script type="text/javascript" src="dist/bundle.js"></script> | ||
</head> | ||
|
||
<body> | ||
<head> | ||
<title>Blocky Test</title> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
<script type="text/javascript" src="../src/index.js"></script> | ||
</head> | ||
<body> | ||
<div id="gridEl"></div> | ||
</body> | ||
|
||
</body> | ||
</html> | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.