Skip to content

Commit 3e8ae13

Browse files
committed
Fix of CI/CD config
1 parent 95202c4 commit 3e8ae13

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
key: node_modules-{{ checksum "yarn.lock" }}
1616
paths:
1717
- node_modules
18+
- run: yarn build
1819
- run: yarn test
1920
- persist_to_workspace:
2021
root: .

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ _This is a fork of https://github.com/staylor/react-helmet-async library, which
1111

1212
_This fork is published to NPM as https://www.npmjs.com/package/@dr.pogodin/react-helmet, its version 2.0.4 exactly matches the same version of the forked library, but with React peer dependency version set to 19. Future versions will take care of an update of dependencies, and code upgrades to the latest React best practices._
1313

14+
[![Sponsor](https://raw.githubusercontent.com/birdofpreyru/js-utils/master/.README/sponsor.svg)](https://github.com/sponsors/birdofpreyru)
1415
---
1516

1617
[Announcement post on Times Open blog](https://open.nytimes.com/the-future-of-meta-tag-management-for-modern-react-development-ec26a7dc9183)

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
},
1313
"scripts": {
1414
"clean": "rimraf lib",
15-
"compile": "yarn run clean && NODE_ENV=production tsx build.ts && yarn types",
15+
"build": "yarn run clean && NODE_ENV=production tsx build.ts && yarn types",
1616
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --report-unused-disable-directives .",
17-
"prepare": "yarn compile",
1817
"test": "yarn lint && yarn typecheck && yarn vitest",
1918
"typecheck": "yarn tsc",
2019
"types": "tsc src/index.tsx --jsx react --declaration --esModuleInterop --allowJs --emitDeclarationOnly --outDir lib",

0 commit comments

Comments
 (0)