Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cron task will fail until you publish the new version #23

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
21 changes: 11 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,14 @@ workflows:
jobs:
- sanity_check

publish_if_needed:
triggers:
- schedule:
cron: "0,30 * * * *"
filters:
branches:
only:
- publishing-automation
jobs:
- publish_if_needed
# publish_if_needed:
# triggers:
# - schedule:
# cron: "0,30 * * * *"
# filters:
# branches:
# only:
# - publishing-automation
# - master
# jobs:
# - publish_if_needed
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["orta.vscode-jest", "editorconfig.editorconfig", "orta.vscode-jest"]
"recommendations": ["orta.vscode-jest", "editorconfig.editorconfig"]
}
13 changes: 9 additions & 4 deletions auto-publish/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const {
const answer = await doesReactDOMOrHotLoaderHasNewerVersionThanUs(
"latest",
"latest",
"test-org-bnaya-2",
"hot-loader",
"_rc"
);

Expand All @@ -32,10 +32,12 @@ const {
path.resolve(__dirname, "staging-area"),
answer.reactDOMVersion,
answer.reactHotLoaderVersion,
"test-org-bnaya-2"
"hot-loader"
);

console.info("don't really publish yet", { patchedPackageDir });
console.info("The patched code is ready, we don't really auto publish yet", { patchedPackageDir });
console.warn("Gonna fail the builds until you publish the new version");
process.exit(1);

// const publishStdOut = await execFile(
// "yarn",
Expand All @@ -56,4 +58,7 @@ const {
} else {
console.info("Nothing to publish");
}
})();
})().catch((e) => {
console.error(e);
process.exit(1);
})
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"private": true,
"name": "@hot-loader/react-dom",
"name": "@hot-loader/react-dom-publishing-infra",
"version": "0.0.0",
"description": "The Hot version of React-DOM",
"description": "Patching & publishing react-dom for hot loader support infra",
"main": "index.js",
"scripts": {
"clean": "rm -Rf target",
Expand All @@ -29,20 +29,20 @@
"homepage": "https://github.com/hot-loader/react-dom#readme",
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"@types/jest": "^24.0.18",
"@types/node": "^10",
"@types/semver": "^6.0.1",
"jest": "^24.8.0",
"@types/semver": "^6.0.2",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"typescript": "^3.5.2",
"typescript": "^3.6.3",
"yarn-deduplicate": "^1.1.1"
},
"dependencies": {
"fs-extra": "^8.1.0",
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2",
"semver": "^6.2.0"
"semver": "^6.3.0"
}
}
Loading