Skip to content

Commit

Permalink
feat!: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyfarrell committed Oct 17, 2023
1 parent 424b95a commit 1c8ad3a
Show file tree
Hide file tree
Showing 29 changed files with 2,071 additions and 2,047 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches:
- master

permissions:
contents: write
pull-requests: write

name: release-please

jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: node
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- run: npm install
- name: Lint
run: npm run -s pretest
Expand Down
86 changes: 43 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "@cfware/tabs",
"version": "0.3.0",
"description": "Basic page tabs element",
"main": "tabs.js",
"exports": "./tabs.js",
"type": "module",
"scripts": {
"pretest": "cfware-lint .",
"tests-only": "nyc -s node --experimental-loader @istanbuljs/esm-loader-hook test.js",
"test": "npm run -s tests-only",
"posttest": "nyc report --check-coverage"
},
"engines": {
"node": ">=16.12.0"
},
"author": "Corey Farrell",
"license": "MIT",
"keywords": [
"custom-elements",
"tabs",
"html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/tabs.git"
},
"bugs": {
"url": "https://github.com/cfware/tabs/issues"
},
"homepage": "https://github.com/cfware/tabs#readme",
"dependencies": {
"@cfware/shadow-element": "^0.17.0"
},
"devDependencies": {
"@cfware-app/icon": "file:pkgs/icon",
"@cfware/fastify-test-helper": "^0.8.0",
"@cfware/lint": "^3.0.4",
"@cfware/nyc": "^0.7.1",
"@cfware/tap-selenium-manager": "^2.0.0",
"@istanbuljs/esm-loader-hook": "^0.2.0",
"libtap": "^1.4.0",
"nyc": "^15.1.0"
}
"name": "@cfware/tabs",
"version": "0.3.0",
"description": "Basic page tabs element",
"main": "tabs.js",
"exports": "./tabs.js",
"type": "module",
"scripts": {
"pretest": "cfware-lint .",
"tests-only": "nyc -s node --experimental-loader @istanbuljs/esm-loader-hook test.js",
"test": "npm run -s tests-only",
"posttest": "nyc report --check-coverage"
},
"engines": {
"node": ">=18"
},
"author": "Corey Farrell",
"license": "MIT",
"keywords": [
"custom-elements",
"tabs",
"html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/tabs.git"
},
"bugs": {
"url": "https://github.com/cfware/tabs/issues"
},
"homepage": "https://github.com/cfware/tabs#readme",
"dependencies": {
"@cfware/shadow-element": "^1"
},
"devDependencies": {
"@cfware-app/icon": "file:pkgs/icon",
"@cfware/fastify-test-helper": "^1",
"@cfware/lint": "^4",
"@cfware/nyc": "^1",
"@cfware/tap-selenium-manager": "^3",
"@istanbuljs/esm-loader-hook": "^0.2",
"libtap": "^1",
"nyc": "^15"
}
}
38 changes: 19 additions & 19 deletions pkgs/icon/icon-chars.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
export const iconChars = {
ban: '\uF05E',
'caret-down': '\uF0D7',
'caret-right': '\uF0DA',
download: '\uF019',
edit: '\uF044',
envelope: '\uF0E0',
'exclamation-triangle': '\uF071',
'id-card': '\uF2C2',
list: '\uF03A',
lock: '\uF023',
microphone: '\uF130',
'phone-alt': '\uF879',
plus: '\uF067',
'question-circle': '\uF059',
'sign-out-alt': '\uF2F5',
times: '\uF00D',
'trash-alt': '\uF2ED',
upload: '\uF093',
user: '\uF007'
ban: '\uF05E',
'caret-down': '\uF0D7',
'caret-right': '\uF0DA',
download: '\uF019',
edit: '\uF044',
envelope: '\uF0E0',
'exclamation-triangle': '\uF071',
'id-card': '\uF2C2',
list: '\uF03A',
lock: '\uF023',
microphone: '\uF130',
'phone-alt': '\uF879',
plus: '\uF067',
'question-circle': '\uF059',
'sign-out-alt': '\uF2F5',
times: '\uF00D',
'trash-alt': '\uF2ED',
upload: '\uF093',
user: '\uF007'
};
42 changes: 21 additions & 21 deletions pkgs/icon/icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions pkgs/icon/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "@cfware-app/icon",
"version": "0.0.0",
"description": "Internal @cfware-app/icon to satisfy peerDependency during development",
"author": "Corey Farrell",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16.12.0"
},
"main": "icons.js",
"scripts": {
"prepare": "cfware-iconbuilder . icon-chars.js iconChars"
},
"dependencies": {
"@cfware/shadow-element": "^0.17.0"
},
"devDependencies": {
"@cfware/icon-builder": "^0.4.0"
}
"name": "@cfware-app/icon",
"version": "0.0.0",
"description": "Internal @cfware-app/icon to satisfy peerDependency during development",
"author": "Corey Farrell",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"main": "icons.js",
"scripts": {
"prepare": "cfware-iconbuilder . icon-chars.js iconChars"
},
"dependencies": {
"@cfware/shadow-element": "^1"
},
"devDependencies": {
"@cfware/icon-builder": "^1"
}
}
Loading

0 comments on commit 1c8ad3a

Please sign in to comment.