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
| 14:05:41.583: Инициализация приложения... | |
| 14:05:41.585: Запрашиваем информацию о локальном репозитории. | |
| 14:05:41.588: Запрашиваем информацию о удалённом репозитории. | |
| 14:05:41.626: Ревизия локального репозитория не получена. | |
| 14:05:41.626: svn: E155007: 'C:\Users\muzo0\Desktop\New folder (2)\Elements' is not a working copy | |
| 14:05:41.898: Информация о ревизии удалённого репозитория обновлена. | |
| 14:05:44.860: Запускаем процесс извлечения файлов из удалённого репозитория (checkout). | |
| 14:05:45.538: A Elements\PDA | |
| 14:05:45.542: A Elements\PDA\Example | |
| 14:05:45.546: A Elements\PDA\Example\Draw |
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 path = require('path'); | |
| var webpack = require('webpack'); | |
| module.exports = { | |
| entry: [ | |
| './src/index' | |
| ], | |
| devtool: 'source-map', | |
| output: { | |
| path: path.join(__dirname, 'public/dist'), |
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 {resolver} from 'graphql-sequelize'; | |
| import Sequelize from 'sequelize'; | |
| import { | |
| GraphQLInt, | |
| GraphQLList, | |
| GraphQLObjectType, | |
| GraphQLNonNull, | |
| GraphQLSchema, | |
| GraphQLString, |
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 from 'React'; | |
| import ReactDOM from 'react-dom'; | |
| import Relay from 'react-relay'; | |
| let mountNode = root; | |
| class Users extends React.Component { | |
| constructor(props) { | |
| console.error(props); | |
| super(props); |
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 path = require('path'); | |
| var getBabelRelayPlugin = require('babel-relay-plugin'); | |
| var schema = require('./schema.json'); | |
| var realyBabelPlugin = getBabelRelayPlugin(schema.data); | |
| module.exports = { | |
| entry: { |
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
| .tab-bar { | |
| .tab { | |
| .title[data-name$=".js"], | |
| .title[data-name$=".coffee"], | |
| .title[data-name$=".jsx"], | |
| .title[data-name$=".elm"], | |
| .title[data-name$=".ts"] | |
| { | |
| border-top: 2px solid rgba(139, 195, 74, 1); | |
| } |
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
| @powershell -NoProfile -ExecutionPolicy Bypass -File "install.ps1" | |
| pause |
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
| DevTools Author | |
| Perfmap | |
| React Developer Tools | |
| Redux DevTools | |
| Scratch 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
| import { Schema, VirtualSchema, Types, config } from 'radiance'; | |
| Radiance({ | |
| schema: { | |
| session: SESSION | |
| }, | |
| acl: { | |
| isAdmin: u => u.id === 1, | |
| isSelf: (u, args) => u.id === args.id | |
| } |
OlderNewer