Skip to content

Commit

Permalink
Remove nightly tags (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
MonicaOlejniczak authored Aug 19, 2024
1 parent 3a99d5f commit ac0d447
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 44 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/canary-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,5 @@ jobs:
secrets: inherit
with:
profile: canary
release-command: |
yarn canary:release --summary-file
node scripts/tag-release.mjs --tag nightly
release-command: yarn canary:release
type: canary
2 changes: 1 addition & 1 deletion crates/atlaspack_monitoring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fixing.

Sentry integration is turned off by default.

Atlaspack uses [sentry](https://sentry.io/) only on `canary` nightly releases for error monitoring.
Atlaspack uses [sentry](https://sentry.io/) only on `canary` releases for error monitoring.

- `ATLASPACK_ENABLE_SENTRY` will enable sentry integration
- `ATLASPACK_SENTRY_TAGS` should contain a JSON string with a dictionary of tags to add to sentry
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/create-react-app/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async function createApp(packageName: string, tempPath: string) {
]);

log(emoji.progress, 'Installing packages...');
await installPackages(['atlaspack@nightly', 'postcss', '@babel/core'], {
await installPackages(['atlaspack@canary', 'postcss', '@babel/core'], {
cwd: tempPath,
isDevDependency: true,
});
Expand Down
38 changes: 0 additions & 38 deletions scripts/tag-release.mjs

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/update-engines-peerdeps.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let packageVersions = new Map(
);
let coreVersion = packageVersions.get('@atlaspack/core').version;
let coreRange =
coreVersion.includes('nightly') || process.argv.includes('--exact')
coreVersion.includes('canary') || process.argv.includes('--exact')
? coreVersion
: `^${coreVersion}`;

Expand Down

0 comments on commit ac0d447

Please sign in to comment.