Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ jobs:
path: package-artifact

- name: Publish
run: npm publish package-artifact/*.tgz --access public
run: npm publish ./package-artifact/*.tgz --access public
11 changes: 0 additions & 11 deletions docs-md/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,6 @@ id: changelog
# Changelog


##### 4.4.1

- Add baseline coverage for documentation/index generation and dependency
security remediation
- Keep the dev-only `brace-expansion` advisory open until its unpublished
`5.0.8` fix is available; production dependencies audit clean
- Remove obsolete ESLint suppressions and unused packages
- Configure npm Trusted Publishing with OIDC and strict release tag validation
- Update TypeScript to 7.0.1-rc, align testing/builds with Vitest and esbuild,
and preserve bundled declaration outputs

##### 4.4.0

- **NEW:** `JSON -> safeJsonParse` - parse JSON without throwing and return a
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "common-utils-pkg",
"version": "4.4.1",
"version": "4.4.0",
"description": "A package of commonly used JavaScript utilities.",
"keywords": ["utilities", "npm", "module", "javascript", "es6", "functions"],
"homepage": "https://common-utils-pkg.js.org/",
Expand Down
2 changes: 1 addition & 1 deletion src/package.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('package publishing configuration', () => {
expect(workflow).toContain('actions/upload-artifact@v7');
expect(workflow).toContain('actions/download-artifact@v8');
expect(workflow).toContain(
'npm publish package-artifact/*.tgz --access public'
'npm publish ./package-artifact/*.tgz --access public'
);
expect(workflow).not.toMatch(
/NPM_TOKEN|NODE_AUTH_TOKEN|npm\.pkg\.github\.com/
Expand Down
Loading