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

Bump and reduce dependencies #171

Draft
wants to merge 27 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2912214
chore: regenerate package lock
doamatto Jul 23, 2023
263c15b
fix: email and website for self
doamatto Jul 23, 2023
5ee1741
deps: add missing dep for buildtime
doamatto Jul 23, 2023
2574062
deps: swap to maintained version of gulp-compile-handlebars
doamatto Aug 6, 2023
e4816e2
chore: add npm run build to make builds marginally easier
doamatto Aug 6, 2023
07abdee
deps: regenerate package lock
doamatto Aug 6, 2023
35ae248
chore: start migration to latest of a17t
doamatto Aug 6, 2023
e9dfa7e
chore: move Axios and JSSoup to devDependencies
doamatto Aug 6, 2023
acf0ed2
fix: ran self-check npm test (npm audit fix)
doamatto Apr 20, 2024
90c2136
chore: bump axios to 0.28.1
doamatto Apr 20, 2024
edf0096
chore: bump axios to latest (1.6.8)
doamatto Apr 20, 2024
9190309
fix: bump timeout from 10ms to 10000ms/10s
doamatto Apr 20, 2024
9f1e597
fix: found out where the rest of the package lockfile went, err well …
doamatto Apr 20, 2024
c570e89
chore: bump node version for GH action
doamatto Apr 20, 2024
7c6a5d2
chore: update some Babel deps to latest
doamatto Aug 21, 2024
b8d99e4
chore: move Jest to devdep
doamatto Aug 21, 2024
5488ec6
chore: update typings deps
doamatto Aug 21, 2024
a659e69
chore: move eslint to develop
doamatto Aug 21, 2024
ec26f4b
chore: swap out handlebars-helpers
doamatto Aug 21, 2024
a1be018
deps: bump
doamatto Jan 10, 2025
10cb611
chore: use `npx` for gulp-cli
doamatto Jan 10, 2025
4955097
fix: use of HBS helpers
doamatto Jan 10, 2025
98fef9e
Merge branch 'master' into bump-deps
doamatto Jan 10, 2025
7fd6110
chore(deps): finish migration away from helpers/handlebars-helpers
doamatto Jan 15, 2025
71e9ccc
chore: use node:fs, node:path for `clean` gulp task instead of `del` pkg
doamatto Jan 15, 2025
2755a1d
deps: bump
doamatto Jan 15, 2025
fc1458a
chore: remove comments for formerly not-made packages
doamatto Jan 15, 2025
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
${{ runner.os }}-
- uses: actions/setup-node@v1
with:
node-version: '12'
node-version: '21'
- run: npm install
- run: echo "::add-matcher::.github/problem_matcher.json"
- run: npm test
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTORS.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[milesmcc]

Check failure on line 1 in CONTRIBUTORS.toml

View workflow job for this annotation

GitHub Actions / build

Must be valid TOML

Check failure on line 1 in CONTRIBUTORS.toml

View workflow job for this annotation

GitHub Actions / build

Must be valid TOML
name = "Miles McCain"
website = "https://miles.land"
github = "milesmcc"
Expand All @@ -14,9 +14,9 @@

[doamatto]
name = "Matt Ronchetto"
website = "https://www.doamatto.xyz"
website = "https://maatt.fr"
github = "doamatto"
email = "ps@doamatto.xyz"
email = "heyy@maatt.fr"

[kulchynska]

Expand Down
13 changes: 8 additions & 5 deletions gulpfile.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require("dotenv").config();
//require("dotenv").config();

import { Product, RubricQuestion, Contributor } from "./src/parsing/types";

Expand All @@ -18,15 +18,18 @@ import {
const gulp = require("gulp");
const postcss = require("gulp-postcss");
const rename = require("gulp-rename");
const del = require("del");
const fs = require("fs");
const fs = require("node:fs");
const path = require("node:path");

const rubric: RubricQuestion[] = loadRubric();
const contributors: Contributor[] = loadContributors();
const products: Product[] = loadProducts(rubric, contributors);

gulp.task("clean", () => {
return del("./dist/**/*");
gulp.task("clean", async () => {
return await fs.rm(path.join(__dirname, "dist"), {
recursive: true,
force: true,
});
});

gulp.task("build api", async () => {
Expand Down
Loading
Loading