chore(hook): add babel pre-commit hook
This commit is contained in:
39
package.json
Normal file
39
package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "loveit-src",
|
||||
"version": "1.0.0",
|
||||
"description": "LoveIt theme source file",
|
||||
"main": "index.js",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.8.4",
|
||||
"@babel/core": "^7.8.4",
|
||||
"@babel/preset-env": "^7.8.4",
|
||||
"babel-preset-minify": "^0.5.1",
|
||||
"husky": "^4.2.3"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npx babel src --out-file static/js/theme.min.js --source-maps",
|
||||
"start": "hugo server --source=exampleSite --themesDir=../.. --disableFastRender -D",
|
||||
"copy": "HUGO_ENV=production hugo -v --source=exampleSite --themesDir=../.. -D --gc --minify && rm -rf resources && cp -rf exampleSite/resources resources"
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "npm run build && npm run copy",
|
||||
"pre-push": "npm run build && npm run copy"
|
||||
}
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/dillonzq/LoveIt.git"
|
||||
},
|
||||
"keywords": [
|
||||
"hugo",
|
||||
"theme"
|
||||
],
|
||||
"author": "Dillon",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/dillonzq/LoveIt/issues"
|
||||
},
|
||||
"homepage": "https://github.com/dillonzq/LoveIt#readme"
|
||||
}
|
||||
Reference in New Issue
Block a user