Ubuntu 15.10 npm 3.5.3 node 4.2.6
test-sourcemaps@ /tmp/my-project
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
| [ | |
| { | |
| "key": "ctrl+cmd+p", | |
| "command": "workbench.action.quickOpenRecent" | |
| }, | |
| { | |
| "key": "alt+cmd+r", | |
| "command": "-revealFileInOS", | |
| "when": "!editorFocus" | |
| }, |
| [ | |
| { | |
| "keys": ["ctrl+shift+'"], | |
| "command": "emmet_rename_tag" | |
| }, | |
| { | |
| "keys": ["ctrl+shift+g"], | |
| "command": "emmet_wrap_with_abbreviation" | |
| }, | |
| { |
| <template> | |
| <v-date-picker | |
| class="date-range-picker" :value="value" @input="onInput" | |
| color="light-blue" event-color="light-blue lighten-4 date-in-range" :events="selectedRange" | |
| :allowed-dates="allowedDates" no-title multiple | |
| > | |
| <slot></slot> | |
| </v-date-picker> | |
| </template> |
| # ~/.local/share/applications/acestream.desktop | |
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Acestream | |
| GenericName=Media player | |
| Comment=Open Acestream links with VLC Media Player | |
| Type=Application | |
| StartupNotify=false | |
| Exec=/snap/bin/acestreamplayer %u | |
| TryExec=/snap/bin/acestreamplayer |
| { | |
| "caret_style": "phase", | |
| "default_line_ending": "unix", | |
| "detect_slow_plugins": false, | |
| "ensure_newline_at_eof_on_save": true, | |
| "folder_exclude_patterns": | |
| [ | |
| ".git", | |
| ".svn", | |
| ".sass-cache", |
| <template> | |
| <transition name="fade" enter-active-class="fadeInDown" leave-active-class="fadeOutDown"> | |
| <div :class="cssClass" class="ui animated message"> | |
| <i @click="triggerClose(notification)" class="close icon"></i> | |
| <div v-if="notification.title" class="header">{{notification.title}}</div> | |
| <p>{{notification.text}}</p> | |
| </div> | |
| </transition> | |
| </template> |
| { | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/RailsCasts Colour Scheme/RailsCastsColorScheme.tmTheme", | |
| "default_line_ending": "unix", | |
| "detect_slow_plugins": false, | |
| "ensure_newline_at_eof_on_save": true, | |
| "file_exclude_patterns": | |
| [ | |
| ".tags*", | |
| "*.pyc", |
| [user] | |
| name = darkside | |
| email = [email protected] | |
| [color] | |
| diff = auto | |
| status = auto | |
| branch = auto | |
| [color "branch"] | |
| current = green | |
| local = yellow |
Ubuntu 15.10 npm 3.5.3 node 4.2.6
test-sourcemaps@ /tmp/my-project
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
| const webpack = require('webpack'); | |
| const WebpackDevServer = require('webpack-dev-server'); | |
| const config = require('../webpack.config'); | |
| const hotWebpackPort = process.env.HOT_WEBPACK_PORT || 3500; | |
| config.output.publicPath = `https://localhost:${hotWebpackPort}/assets/`; | |
| ['entry1', 'entry2'].forEach(entryName => { | |
| config.entry[entryName].push( | |
| 'webpack-dev-server/client?https://localhost:' + hotWebpackPort, | |
| 'webpack/hot/only-dev-server' |