Add empty package.json and add start script
This commit is contained in:
parent
13d0faf629
commit
ceb368418f
|
@ -1 +1,2 @@
|
|||
node_modules
|
||||
public
|
||||
|
|
|
@ -172,3 +172,9 @@ Contributions are very welcome. To run the example site in this repository local
|
|||
hugo server -s exampleSite -d ../public --themesDir '../' --theme '.'
|
||||
```
|
||||
|
||||
or simply...
|
||||
|
||||
```shell
|
||||
npm start
|
||||
```
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"scripts": {
|
||||
"start": "hugo server -s exampleSite -d ../public --themesDir '../' --theme '.'"
|
||||
},
|
||||
"dependencies": {
|
||||
"npm": "^6.0.0"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue