This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| It looks like your Babel configuration specifies a module transformer. Please disable it. If you're using the "es2015" preset, consider using "es2015-rollup" instead. See https://github.com/rollup/rollup-plugin-babel#configuring-babel for more information | |
| Error: It looks like your Babel configuration specifies a module transformer. Please disable it. If you're using the "es2015" preset, consider using "es2015-rollup" instead. See https://github.com/rollup/rollup-plugin-babel#configuring-babel for more information |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from "react" | |
| import ReactDom from "react-dom" | |
| import setupStore from "./store" | |
| import createContainer from "./container" | |
| export default function render(){ | |
| let containerEl = document.querySelector("#container") | |
| let store = setupStore() | |
| ReactDom.render(createContainer(store), containerEl) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| machine: | |
| node: | |
| version: 6.3.0 | |
| post: | |
| - npm install -g npm@3 | |
| timezone: Asia/Tokyo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .rating-star .half{ | |
| fill: orange; | |
| color: gray; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svg aria-hidden="true" class="octicon octicon-plus" width="12" height="16" role="img" version="1.1" viewBox="0 0 12 16"> | |
| <path d="M12 9H7v5H5V9H0V7h5V2h2v5h5v2z"></path> | |
| </svg> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| └── src | |
| ├── foo | |
| │ └── baz.js | |
| └── index.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (0, _entries2.default)({ | |
| "foo": "baz" | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT * | |
| FROM access | |
| WHERE | |
| url_extract_host(referer) = "google.com" | |
| -- 正規表現でやるとこんな感じ | |
| -- regexp_like(referer, '.*google.com/.*') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| : | |
| WHERE | |
| -- 1日間のデータなら -1d。一ヶ月なら-30dとか。 | |
| TD_TIME_RANGE(time, | |
| TD_TIME_ADD(TD_SCHEDULED_TIME(), '-1d', 'JST'), | |
| null, | |
| 'JST' | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| : | |
| var postcssScss = require('postcss-scss') | |
| var stylelint = require('stylelint') | |
| : | |
| gulp.task('scss-lint', function () { | |
| gulp.src("path/to/scss") | |
| .pipe(postcss([ | |
| stylelint(), // これを追加 | |
| postcssReporter({clearMessages: true}), // こっちも必要 | |
| ], {syntax: postcssScss})) |