Skip to content

Commit b4ffe5e

Browse files
authored
Merge pull request #72 from ream88/update-dependencies
Update dependencies and bump to 9.0.0
2 parents c89089b + d091863 commit b4ffe5e

File tree

5 files changed

+5107
-3432
lines changed

5 files changed

+5107
-3432
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
1-
name: Node.js CI
1+
name: Test
22

33
on:
44
push:
5-
branches: [ main ]
65
pull_request:
7-
branches: [ main ]
86

97
jobs:
108
build:
11-
129
runs-on: ubuntu-latest
1310

1411
strategy:
1512
matrix:
16-
node-version: [10, 12, 14, 16, 18]
13+
node-version: [12, 14, 16, 18]
1714

1815
steps:
1916
- uses: actions/checkout@v3

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2019 Mario Uher
3+
Copyright (c) 2016-2022 Mario Uher
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function trbl (prefix) {
2-
var rules = []
2+
const rules = []
33

44
if (prefix) {
55
rules.push(prefix)
@@ -36,21 +36,21 @@ function border (infix) {
3636
]
3737
}
3838

39-
var cssModules = []
39+
const cssModules = []
4040
.concat([
4141
'composes'
4242
])
4343

44-
var reset = ['all']
44+
const reset = ['all']
4545

46-
var positioning = []
46+
const positioning = []
4747
.concat([
4848
'position',
4949
'z-index'
5050
])
5151
.concat(trbl())
5252

53-
var displayAndBoxModel = []
53+
const displayAndBoxModel = []
5454
.concat([
5555
'display',
5656
'overflow'

0 commit comments

Comments
 (0)