summaryrefslogtreecommitdiff
path: root/package.json (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use git URLs in package.jsonBryan Davis2017-07-011-2/+2
| | | | | | | | | Using the "github:..." form to declare a dependency in package.json makes npm attempt to install the package using an ssh clone rather than an https clone. Some deployment environments may not allow ssh access to external servers which will prevent the clones from succeeding. Using the "git+https://..." form will clone the same repo from GitHub without requiring ssh connectivity.
* Use non-zero exit codes when build failsSheogorath2017-06-031-1/+1
|
* Merge branch 'master' into BackendRefactorMax Wu2017-05-141-0/+1
|\
| * Load statusbar template by string-loaderYukai Huang2017-05-071-1/+2
| |
* | refactor(config.js): Extract config fileBoHong Li2017-05-081-1/+2
|/ | | | | * Separate different config source to each files * Freeze config object
* chore(build): Upgrade uws to 0.14.1, other npm version have been removedWu Cheng-Han2017-03-291-1/+1
|
* style: Fix missing newline in variablesWu Cheng-Han2017-03-291-1/+2
|
* Mark as 0.5.1Wu Cheng-Han2017-03-231-1/+1
|
* Merge pull request #387 from hackmdio/cm-refactorMax Wu2017-03-141-0/+21
|\ | | | | Extract CodeMirror instance
| * Add inlineAttachment to globalYukai Huang2017-03-131-1/+2
| |
| * Add standarjs globalsYukai Huang2017-03-131-0/+20
| |
* | Update to fix pagination error in list.js over v1.5.0Wu Cheng-Han2017-03-141-2/+1
|/
* Remove eslintBoHong Li2017-03-131-3/+2
| | | | | | | 1. Remove eslint , bacause we use JavaScript Standard Style. 2. Add lts/boron version to travis CI, web use it in docker version Signed-off-by: BoHong Li <a60814billy@gmail.com>
* Use JavaScript Standard StyleBoHong Li2017-03-081-1/+8
| | | | | Introduce JavaScript Standard Style as project style rule, and fixed all fail on backend code.
* Using package.json to test lint insteadbananaappletw2017-02-161-1/+2
| | | | Exclude *.min.js from eslint
* Update node dependency up to 6.x in package.jsonbananaappletw2017-02-151-1/+1
|
* Add travis cibananaappletw2017-02-151-0/+2
|
* Update webpack config to use parallel uglify plugin to speed up production buildWu Cheng-Han2017-02-031-1/+2
|
* Update to use babel-polyfill to support ES6 features in old browsersWu Cheng-Han2017-02-031-0/+1
|
* Upgrade mermaid to support class diagramWu Cheng-Han2017-02-021-1/+1
|
* Upgrade viz.js to fix manual workaround and get smaller file sizeWu Cheng-Han2017-02-021-1/+1
|
* Revert experimental vue for nowYukai Huang2017-01-211-3/+0
|
* Merge branch 'master' into frontend-nextYukai Huang2017-01-131-0/+1
|\
| * Merge pull request #279 from alecdwm/ldap-authMax Wu2017-01-091-0/+1
| |\ | | | | | | Support for LDAP server authentication
| | * Use randomcolor not seedrandom for avatar backgroundsalecdwm2017-01-061-1/+0
| | |
| | * Profile pictures for LDAP usersalecdwm2017-01-061-0/+1
| | |
| | * Initial support for LDAP server authenticationalecdwm2016-12-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Limitations as of this commit: - tlsOptions can only be specified in config.json, not as env vars - authentication failures are not yet gracefully handled by the UI - instead the error message is shown on a blank page (/auth/ldap) - no email address is associated with the LDAP user's account - no picture/profile URL is associated with the LDAP user's account - we might have to generate our own access + refresh tokens, because we aren't using oauth. The currently generated tokens are just a placeholder. - 'LDAP Sign in' needs to be translated to each locale
* | | Revert "Rename npm script"bananaappletw2017-01-041-2/+2
| | | | | | | | | | | | This reverts commit ed83dfc862768572eab0c2aed629b1700ac9e224.
* | | Merge branch 'master' into frontend-nextYukai Huang2017-01-021-7/+7
|\| |
| * | Mark as 0.5.0Wu Cheng-Han2017-01-021-1/+1
| | |
| * | Update dependenciesWu Cheng-Han2017-01-021-6/+6
| | |
* | | Basic setup for Vue appYukai Huang2016-12-241-0/+2
| | |
* | | Install vue and babel dependencyYukai Huang2016-12-241-0/+7
|/ /
* | Mark as 0.4.6Wu Cheng-Han2016-12-191-1/+1
| |
* | Upgrade dependenciesWu Cheng-Han2016-12-191-39/+39
| |
* | Remove unused vendor code and add missing dependencyWu Cheng-Han2016-12-191-1/+1
| |
* | Remove unused dependenciesWu Cheng-Han2016-12-181-2/+0
|/
* Remove bower occurencesYukai Huang2016-12-111-3/+0
|
* Rename npm scriptYukai Huang2016-12-101-2/+2
| | | | | | | webpack scripts are meant to “build” assets, so place them under the same namespace * dev => build:dev * build => build:prod
* Drop nodemon dependencyYukai Huang2016-12-101-2/+1
| | | | Sometimes nodemon not reload source code correctly, so simply drop it.
* Remove preprocess image on upload image or it will losing support of image ↵Wu Cheng-Han2016-12-031-1/+0
| | | | some formats
* Add delay to throttle nodemon in dev scriptWu Cheng-Han2016-12-021-1/+1
|
* Update to support optional email register and signinWu Cheng-Han2016-12-021-0/+5
|
* Remove webpack shell plugin for webpack because it've been solved in another wayWu Cheng-Han2016-11-281-2/+1
|
* Update to move custom CodeMirror codebase to our own repo and update webpack ↵Wu Cheng-Han2016-11-281-1/+3
| | | | build config
* Merge pull request #248 from hackmdio/file-upload-optionsMax Wu2016-11-271-1/+4
|\ | | | | Support other options for image uploading
| * Config sharp image preprocessingYukai Huang2016-11-161-0/+1
| |
| * upload image to s3Yukai Huang2016-11-161-0/+1
| |
| * Install nodemon for local developmentYukai Huang2016-11-141-1/+2
| |
* | Optimize hackmd resource packing and load ordersWu Cheng-Han2016-11-261-0/+9
| |