This commit is contained in:
Chen Asraf
2019-05-21 00:55:59 +03:00
parent 93e1314a03
commit e1b66bbff9
3 changed files with 7 additions and 3 deletions

4
.vscode/tasks.json vendored
View File

@@ -6,14 +6,14 @@
{
"label": "webpack",
"type": "shell",
"command": "webpack --watch",
"command": "yarn start",
"isBackground": true,
"problemMatcher": []
},
{
"label": "release",
"type": "shell",
"command": "NODE_ENV=production webpack && zip -9 -r release.zip dist/*",
"command": "yarn release",
"isBackground": true,
"problemMatcher": []
}

View File

@@ -4,6 +4,10 @@
"main": "index.js",
"author": "Chen Asraf",
"license": "MIT",
"scripts": {
"start": "webpack --watch",
"build": "NODE_ENV=production webpack && zip -9 -j release.zip dist/*"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",

View File

@@ -9,5 +9,5 @@
.__brolang_tag_p.__brolang_en::after,
.__brolang_tag_div.__brolang_en p::before,
.__brolang_tag_div.__brolang_en p::after {
content: ' bro ';
content: ' dude ';
}