Skip to content

Commit

Permalink
Merge pull request #72 from ream88/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies and bump to 9.0.0
  • Loading branch information
ream88 authored Sep 25, 2022
2 parents c89089b + d091863 commit b4ffe5e
Show file tree
Hide file tree
Showing 5 changed files with 5,107 additions and 3,432 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
name: Node.js CI
name: Test

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10, 12, 14, 16, 18]
node-version: [12, 14, 16, 18]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2019 Mario Uher
Copyright (c) 2016-2022 Mario Uher

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function trbl (prefix) {
var rules = []
const rules = []

if (prefix) {
rules.push(prefix)
Expand Down Expand Up @@ -36,21 +36,21 @@ function border (infix) {
]
}

var cssModules = []
const cssModules = []
.concat([
'composes'
])

var reset = ['all']
const reset = ['all']

var positioning = []
const positioning = []
.concat([
'position',
'z-index'
])
.concat(trbl())

var displayAndBoxModel = []
const displayAndBoxModel = []
.concat([
'display',
'overflow'
Expand Down
Loading

0 comments on commit b4ffe5e

Please sign in to comment.