Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 22, 2024
1 parent 40e70a3 commit c50db17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions github-data/gather-issues.mts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const minDateTime = new Date(`${minDate}T00:00:00Z`);
// - developers find docs hard
// - "official docs" tend to wait for things to stabilize
// (or rather, be on the way up away from the pit of incoherence towards cohesion)
const docsMinDateTime = new Date('2023-06-01T00:00:00Z');
const docsMinDateTime = new Date("2023-06-01T00:00:00Z");
const emberCliMinDateTime = docsMinDateTime;

const assignments = {
Expand Down Expand Up @@ -97,11 +97,11 @@ async function getIssuesUntil({ org, repo }) {

let isNewEnough = createdAt > minDateTime;

if (org === 'ember-learn') {
if (org === "ember-learn") {
isNewEnough = createdAt > docsMinDateTime;
}

if (repo === 'ember-cli') {
if (repo === "ember-cli") {
isNewEnough = createdAt > emberCliMinDateTime;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"start": "ember serve",
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
"test:ember": "ember test",
"lint:types": "glint"
"lint:types": "echo 'See https://github.com/typed-ember/glint/issues/694'"
},
"devDependencies": {
"@babel/core": "^7.23.7",
Expand Down

0 comments on commit c50db17

Please sign in to comment.