Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
KamiKillertO committed May 1, 2021
2 parents 046aad9 + 4733cd4 commit ab1f03f
Show file tree
Hide file tree
Showing 16 changed files with 757 additions and 474 deletions.
81 changes: 81 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "04:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: "@types/node"
versions:
- 14.14.22
- 14.14.24
- 14.14.25
- 14.14.26
- 14.14.28
- 14.14.30
- 14.14.31
- 14.14.32
- 14.14.33
- 14.14.34
- 14.14.35
- 14.14.36
- 14.14.37
- 14.14.39
- 14.14.41
- 15.0.0
- dependency-name: eslint
versions:
- 7.18.0
- 7.19.0
- 7.20.0
- 7.22.0
- 7.23.0
- 7.24.0
- dependency-name: "@typescript-eslint/parser"
versions:
- 4.14.1
- 4.14.2
- 4.15.0
- 4.15.1
- 4.15.2
- 4.16.1
- 4.18.0
- 4.19.0
- 4.20.0
- 4.21.0
- dependency-name: "@typescript-eslint/eslint-plugin"
versions:
- 4.14.1
- 4.14.2
- 4.15.0
- 4.15.1
- 4.15.2
- 4.16.1
- 4.18.0
- 4.19.0
- 4.20.0
- 4.21.0
- dependency-name: "@types/mocha"
versions:
- 8.2.1
- dependency-name: typescript
versions:
- 4.1.4
- 4.1.5
- 4.2.2
- 4.2.3
- dependency-name: chai
versions:
- 4.3.0
- 4.3.1
- dependency-name: mocha
versions:
- 8.3.0
- dependency-name: "@types/vscode"
versions:
- 1.53.0
- dependency-name: vscode-test
versions:
- 1.5.0
18 changes: 18 additions & 0 deletions .github/workflows/open-vsx-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Open vsx publish
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npx ovsx publish -p $TOKEN
env:
TOKEN: ${{ secrets.VSXTOKEN }}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.11.1

### Fix

Extract browser colors surrounded by quotes.

## 0.11.0

### Features

#### Use color's alpha value to generate background

Now colorize render backgrounds with alpha value 🎉.

## 0.10.0

### Features
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This extension your styles files looking for colors and generate a colored back

![](https://raw.githubusercontent.com/kamikillerto/vscode-colorize/master/assets/demo_variables.gif)

💡 [How to enable variables support](#colorizeactivate_variables_support_beta-boolean-default-false)
💡 [How to enable variables support](#colorizecolorized_variables)

## Features

Expand Down Expand Up @@ -104,9 +104,9 @@ _This way all @variables will be colorized_
- [x] Generate background for hexa colors
- [x] Update background on color updates
- [x] Generate background for rgb colors
- [x] Generate background for rgba colors (~ missing transparency)
- [x] Generate background for rgba colors
- [x] Generate background for hsl colors
- [x] Generate background for hsla colors (~ missing transparency)
- [x] Generate background for hsla colors
- [x] Generate background for Predefined/Cross-browser colors
- [x] Generate background for preprocessor variables
- [x] Generate background for css variables
Expand Down
Loading

0 comments on commit ab1f03f

Please sign in to comment.