mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 09:36:43 +03:00
chore(*): remove Travis (#864)
* chore(*): remove Travis config * chore(*): fix CI badges * chore(*): fix package source links * chore(*): remove CI badges from packages
This commit is contained in:
parent
77d61b1c73
commit
e18b2757f4
|
@ -1,4 +1,4 @@
|
||||||
[![Build Status](https://travis-ci.org/reduxjs/redux-devtools.svg?branch=master)](https://travis-ci.org/reduxjs/redux-devtools) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=round-square)](https://github.com/reduxjs/redux-devtools/pulls)
|
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/reduxjs/redux-devtools/CI) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=round-square)](https://github.com/reduxjs/redux-devtools/pulls)
|
||||||
|
|
||||||
# Redux DevTools
|
# Redux DevTools
|
||||||
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
sudo: required
|
|
||||||
dist: trusty
|
|
||||||
language: node_js
|
|
||||||
node_js:
|
|
||||||
- '6'
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- $HOME/.yarn-cache
|
|
||||||
- node_modules
|
|
||||||
env:
|
|
||||||
- CXX=g++-4.8
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
sources:
|
|
||||||
- google-chrome
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
packages:
|
|
||||||
- google-chrome-stable
|
|
||||||
- g++-4.8
|
|
||||||
|
|
||||||
install:
|
|
||||||
- '/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16'
|
|
||||||
- npm install -g yarn
|
|
||||||
- yarn install
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- export DISPLAY=:99.0
|
|
||||||
- sh -e /etc/init.d/xvfb start &
|
|
||||||
- sleep 3
|
|
||||||
|
|
||||||
script:
|
|
||||||
- yarn test
|
|
|
@ -1,4 +1,4 @@
|
||||||
# react-base16-styling [![Build Status](https://img.shields.io/travis/alexkuz/react-base16-styling/master.svg)](https://travis-ci.org/alexkuz/react-base16-styling) [![Latest Stable Version](https://img.shields.io/npm/v/react-base16-styling.svg)](https://www.npmjs.com/package/react-base16-styling)
|
# react-base16-styling [![Latest Stable Version](https://img.shields.io/npm/v/react-base16-styling.svg)](https://www.npmjs.com/package/react-base16-styling)
|
||||||
|
|
||||||
React styling with base16 color scheme support
|
React styling with base16 color scheme support
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,8 @@
|
||||||
/>
|
/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<a href="https://github.com/alexkuz/react-dock"
|
<a
|
||||||
|
href="https://github.com/reduxjs/redux-devtools/tree/main/packages/react-dock"
|
||||||
><img
|
><img
|
||||||
style="z-index: 999999999; position: fixed; top: 0; left: 0; border: 0"
|
style="z-index: 999999999; position: fixed; top: 0; left: 0; border: 0"
|
||||||
src="https://camo.githubusercontent.com/121cd7cbdc3e4855075ea8b558508b91ac463ac2/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f677265656e5f3030373230302e706e67"
|
src="https://camo.githubusercontent.com/121cd7cbdc3e4855075ea8b558508b91ac463ac2/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f677265656e5f3030373230302e706e67"
|
||||||
|
|
|
@ -32,10 +32,10 @@ Check out [examples](examples) directory for more details.
|
||||||
|
|
||||||
### Theming
|
### Theming
|
||||||
|
|
||||||
This component now uses [react-base16-styling](https://github.com/alexkuz/react-base16-styling) module, which allows to customize component via `theme` property, which can be the following:
|
This component now uses [react-base16-styling](https://github.com/reduxjs/redux-devtools/tree/main/packages/react-base16-styling) module, which allows to customize component via `theme` property, which can be the following:
|
||||||
|
|
||||||
- [base16](http://chriskempson.com/projects/base16/) theme data. [The example theme data can be found here](https://github.com/gaearon/redux-devtools/tree/75322b15ee7ba03fddf10ac3399881e302848874/src/react/themes).
|
- [base16](http://chriskempson.com/projects/base16/) theme data. [The example theme data can be found here](https://github.com/gaearon/redux-devtools/tree/75322b15ee7ba03fddf10ac3399881e302848874/src/react/themes).
|
||||||
- object that contains style objects, strings (that treated as classnames) or functions. A function is used to extend its first argument `{ style, className }` and should return an object with the same structure. Other arguments depend on particular context (and should be described here). See [createStylingFromTheme.js](https://github.com/alexkuz/react-json-tree/blob/feature-refactor-styling/src/createStylingFromTheme.js) for the list of styling object keys. Also, this object can extend `base16` theme via `extend` property.
|
- object that contains style objects, strings (that treated as classnames) or functions. A function is used to extend its first argument `{ style, className }` and should return an object with the same structure. Other arguments depend on particular context (and should be described here). See [createStylingFromTheme.js](https://github.com/reduxjs/redux-devtools/blob/main/packages/react-json-tree/src/createStylingFromTheme.ts) for the list of styling object keys. Also, this object can extend `base16` theme via `extend` property.
|
||||||
|
|
||||||
Every theme has a light version, which is enabled with `invertTheme` prop.
|
Every theme has a light version, which is enabled with `invertTheme` prop.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Redux DevTools Dock Monitor
|
# Redux DevTools Dock Monitor
|
||||||
|
|
||||||
A resizable and movable dock for [Redux DevTools](https://github.com/reduxjs/redux-devtools).
|
A resizable and movable dock for [Redux DevTools](https://github.com/reduxjs/redux-devtools).
|
||||||
Powered by [React Dock](https://github.com/alexkuz/react-dock).
|
Powered by [React Dock](https://github.com/reduxjs/redux-devtools/tree/main/packages/react-dock).
|
||||||
|
|
||||||
![](http://i.imgur.com/QbNzNW4.gif)
|
![](http://i.imgur.com/QbNzNW4.gif)
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,6 @@ A live-editing time travel environment for [Redux](https://github.com/reactjs/re
|
||||||
- [Custom Monitors](#custom-monitors)
|
- [Custom Monitors](#custom-monitors)
|
||||||
- [License](#license)
|
- [License](#license)
|
||||||
|
|
||||||
[![build status](https://img.shields.io/travis/reduxjs/redux-devtools/master.svg?style=flat-square)](https://travis-ci.org/reduxjs/redux-devtools)
|
|
||||||
[![npm version](https://img.shields.io/npm/v/redux-devtools.svg?style=flat-square)](https://www.npmjs.com/package/redux-devtools)
|
[![npm version](https://img.shields.io/npm/v/redux-devtools.svg?style=flat-square)](https://www.npmjs.com/package/redux-devtools)
|
||||||
[![npm downloads](https://img.shields.io/npm/dm/redux-devtools.svg?style=flat-square)](https://www.npmjs.com/package/redux-devtools)
|
[![npm downloads](https://img.shields.io/npm/dm/redux-devtools.svg?style=flat-square)](https://www.npmjs.com/package/redux-devtools)
|
||||||
[![redux channel on discord](https://img.shields.io/badge/discord-redux@reactiflux-738bd7.svg?style=flat-square)](https://discord.gg/0ZcbPKXt5bWb10Ma)
|
[![redux channel on discord](https://img.shields.io/badge/discord-redux@reactiflux-738bd7.svg?style=flat-square)](https://discord.gg/0ZcbPKXt5bWb10Ma)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user