[READ-ONLY] Mirror of https://github.com/probablykasper/taskler. Simple text editor for your New Tab page taskler.kasper.space
browser-extension chrome chrome-extension editor extension firefox firefox-addon firefox-extension notes
0

Configure Feed

Select the types of activity you want to include in your feed.

Changed dev server to port 3000

Kasper (Feb 3, 2019, 7:45 PM +0100) 70cfb928 f30dde9b

+3 -3
+2 -2
README.md
··· 18 18 ### Commands 19 19 Pug files receive an `isExtension` variable. Add the `--extension` flag to the `gulp` command to set it to true. 20 20 - `gulp`: Shorthand for `gulp website`. 21 - - `gulp website`: Build `/src` in website mode, watche for changes and start dev server at http://localhost:1234. 22 - - `gulp extension`: Build `/src` in extension mode, watche for changes and start dev server at http://localhost:1234. 21 + - `gulp website`: Build `/src` in website mode, watche for changes and start dev server at http://localhost:3000. 22 + - `gulp extension`: Build `/src` in extension mode, watche for changes and start dev server at http://localhost:3000. 23 23 - `gulp website:deploy`: Build `/src` in website mode and deploy to `/docs` folder (GitHub Pages). 24 24 - `gulp extension:zip`: Build `/src` in extension mode and create a zip in `/dist`, ready to be uploaded to Chrome Web Store and such. You'll be prompted to type in a new version. 25 25
+1 -1
gulpfile.js
··· 1 - const devServerPort = 1234 1 + const devServerPort = 3000 2 2 const openBrowserWhenDevServerStarts = false 3 3 4 4 const buildSrc = 'src/**/*'