Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avine/avine-cv
My Curriculum Vitae
https://github.com/avine/avine-cv
babeljs browserify curriculum-vitae less webpack
Last synced: 8 days ago
JSON representation
My Curriculum Vitae
- Host: GitHub
- URL: https://github.com/avine/avine-cv
- Owner: avine
- License: mit
- Created: 2016-11-30T23:37:29.000Z (about 8 years ago)
- Default Branch: webpack
- Last Pushed: 2023-01-03T18:44:10.000Z (about 2 years ago)
- Last Synced: 2024-11-14T19:49:05.289Z (2 months ago)
- Topics: babeljs, browserify, curriculum-vitae, less, webpack
- Language: HTML
- Homepage:
- Size: 4.37 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My Curriculum Vitae - Avine
This branch uses `webpack` to build the app.
**Feel free to check [this version](https://github.com/avine/avine-cv/tree/master) which is based on npm scripts.**
## Usage
1. To build the app in memory for development execute `npm run start:dev`.
2. To build the app in the `./dist` folder for development, execute `npm run build:dev`.
3. To build the app in the `./dist` folder for production, execute `npm run build`.
4. To serve the `./dist` folder on a local server (after step 1. or 2.) execute `npm run start`.## package.json scripts
```json
{
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src/js",
"start:dev": "webpack-dev-server",
"build:dev": "webpack",
"build": "webpack -p",
"start": "browser-sync start --server dist/ --files dist/ --no-notify"
}
}
```