8 Commits
1.0.1 ... 1.0.4

Author SHA1 Message Date
e9ccd5ffb0 updated publish steps
Some checks failed
Publish Library / Build NPM Project (push) Successful in 11s
Publish Library / Tag Version (push) Successful in 6s
Publish Library / Publish CDN & Docs (push) Failing after 5s
2025-08-10 12:49:52 -04:00
c57978c228 updated publish steps
All checks were successful
Publish Library / Build NPM Project (push) Successful in 14s
Publish Library / Publish CDN & Docs (push) Successful in 3s
Publish Library / Tag Version (push) Successful in 6s
2025-08-10 12:48:37 -04:00
f0aa4b92c6 updated publish steps
Some checks failed
Publish Library / Build NPM Project (push) Has started running
Publish Library / Tag Version (push) Has been cancelled
Publish Library / Publish CDN & Docs (push) Has been cancelled
2025-08-10 12:48:24 -04:00
503efc10fc Bump: 1.0.4
Some checks failed
Publish Library / Tag Version (push) Successful in 6s
Publish Library / Publish CDN & Docs (push) Failing after 4s
Publish Library / Build NPM Project (push) Successful in 16s
2025-08-10 12:43:44 -04:00
0b80dbf999 Merge remote-tracking branch 'origin/master'
Some checks failed
Publish Library / Publish CDN & Docs (push) Has been cancelled
Publish Library / Build NPM Project (push) Successful in 26s
Publish Library / Tag Version (push) Has been cancelled
2025-08-10 12:43:10 -04:00
ce2208f1b2 Better '$' error handling 2025-08-10 12:43:03 -04:00
44dd2a659a Update .github/workflows/build.yaml
All checks were successful
Publish Library / Build NPM Project (push) Successful in 27s
Publish Library / Tag Version (push) Successful in 9s
Publish Library / Publish CDN & Docs (push) Successful in 25s
2025-06-24 19:30:16 -04:00
c2b3d7dc3c Fixed node import
All checks were successful
Publish Library / Build NPM Project (push) Successful in 16s
Publish Library / Tag Version (push) Successful in 6s
Publish Library / Publish CDN & Docs (push) Successful in 20s
2025-06-11 11:05:35 -04:00
4 changed files with 60 additions and 56 deletions

View File

@ -1,53 +1,57 @@
name: Publish Library name: Publish Library
run-name: Publish Library run-name: Publish Library
on: on:
push: push:
jobs: jobs:
build: build:
name: Build NPM Project name: Build NPM Project
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: node:alpine container: node:alpine
steps: steps:
- name: Clone Repository - name: Clone Repository
uses: ztimson/actions/clone@develop uses: ztimson/actions/clone@develop
- name: Install & Build - name: Install & Build
run: npm i && npm run build run: npm i && npm run build
- name: Upload to Registry - name: Publish Library
uses: ztimson/actions/npm/publish@develop run: |
if [ "${{github.ref_name}}" = "master" ]; then
- name: Upload to NPM REGISTRY="${{github.server_url}}/api/packages/${{github.repository_owner}}/npm/"
uses: ztimson/actions/npm/publish@develop npm set registry "$REGISTRY"
with: npm set $(echo $REGISTRY | sed s%http:%% | sed s%https:%% ):_authToken "${{secrets.DEPLOY_TOKEN}}"
owner: ztimson npm publish || echo "Failed to publish"
registry: https://registry.npmjs.org/
token: ${{secrets.NPM_TOKEN}} REGISTRY="https://registry.npmjs.org/"
tag: npm set registry "$REGISTRY"
name: Tag Version npm set $(echo $REGISTRY | sed s%http:%% | sed s%https:%% ):_authToken "${{secrets.NPM_TOKEN}}"
needs: build npm publish || echo "Failed to publish"
if: ${{github.ref_name}} == 'release' fi
runs-on: ubuntu-latest tag:
container: node:alpine name: Tag Version
steps: needs: build
- name: Clone Repository if: ${{github.ref_name}} == 'release'
uses: ztimson/actions/clone@develop runs-on: ubuntu-latest
container: node:alpine
- name: Get Version Number steps:
run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV - name: Clone Repository
uses: ztimson/actions/clone@develop
- name: Tag Version
uses: ztimson/actions/tag@develop - name: Get Version Number
with: run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV
tag: ${{env.VERSION}}
- name: Tag Version
docs: uses: ztimson/actions/tag@develop
name: Publish CDN & Docs with:
needs: build tag: ${{env.VERSION}}
uses: ztimson/actions/.github/workflows/docker.yaml@develop
with: docs:
name: ztimson/css-utils name: Publish CDN & Docs
repository: ${{github.server_url}}/${{github.repository}}.git needs: build
pass: ${{secrets.DEPLOY_TOKEN}} uses: ztimson/actions/.github/workflows/docker.yaml@develop
with:
name: ztimson/node-utils
repository: ${{github.server_url}}/${{github.repository}}.git
pass: ${{secrets.DEPLOY_TOKEN}}

View File

@ -1,6 +1,6 @@
{ {
"name": "@ztimson/node-utils", "name": "@ztimson/node-utils",
"version": "1.0.1", "version": "1.0.4",
"description": "CSS Utility Classes", "description": "CSS Utility Classes",
"author": "ztimson", "author": "ztimson",
"license": "MIT", "license": "MIT",

View File

@ -3,7 +3,7 @@ import {exec, execSync} from 'child_process';
export function $(str: TemplateStringsArray, ...args: string[]): Promise<string> { export function $(str: TemplateStringsArray, ...args: string[]): Promise<string> {
let cmd = str.reduce((acc, part, i) => acc + part + (args[i] || ''), ''); let cmd = str.reduce((acc, part, i) => acc + part + (args[i] || ''), '');
return new Promise((res, rej) => exec(cmd, (err, stdout, stderr) => { return new Promise((res, rej) => exec(cmd, (err, stdout, stderr) => {
if(err || stderr) return rej(err || stderr); if(err) return rej(stderr || err);
return res(stdout); return res(stdout);
})) }))
} }

View File

@ -1,4 +1,4 @@
import readline from 'node:readline'; import readline from 'readline';
/** /**
* Retrieve input from the CLI * Retrieve input from the CLI