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

upgrade node to 20.10.0 #1433

Closed
wants to merge 55 commits into from
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
fa5eadc
upgrade node to 20.10.0
MosheEichler Dec 7, 2023
e02f5c2
node lock
MosheEichler Dec 7, 2023
f2ed55a
fixing
MosheEichler Dec 7, 2023
3744e1d
revert
MosheEichler Dec 7, 2023
e87ad1c
fixing all dependencies
MosheEichler Dec 7, 2023
14b95da
fix mdx server
MosheEichler Dec 7, 2023
835e864
fix mdx parser
MosheEichler Dec 7, 2023
15fb5f7
type module
MosheEichler Dec 7, 2023
4a48c04
fix bad readme
MosheEichler Dec 7, 2023
c1461ab
increase max failures
MosheEichler Dec 7, 2023
3113d82
remove variable
MosheEichler Dec 7, 2023
7401ce8
fix extra docs
MosheEichler Dec 7, 2023
dc804b3
fix deprecation-process-and-hidden-packs.md
MosheEichler Dec 7, 2023
740d1d9
fix readme files
MosheEichler Dec 7, 2023
5a1bed9
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Dec 7, 2023
cd7370b
fix readme files
MosheEichler Dec 7, 2023
1b6c2e4
fix readme files
MosheEichler Dec 7, 2023
ba7a0a2
delete
MosheEichler Dec 7, 2023
f6cb2ea
firebase
MosheEichler Dec 7, 2023
47f6410
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Dec 7, 2023
9c5035b
revert
MosheEichler Dec 7, 2023
e5ddc6b
unist-util-visit
MosheEichler Dec 7, 2023
8f19512
Cr fixes
MosheEichler Dec 11, 2023
9c9fc40
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Dec 11, 2023
e0c1655
set mdx react version
MosheEichler Dec 21, 2023
ca822c9
update the docusaurus config
MosheEichler Dec 28, 2023
a8a2dd3
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Dec 28, 2023
8b52703
set package json
MosheEichler Dec 28, 2023
77e1736
fix imports
MosheEichler Dec 28, 2023
f9225d5
fix incident list
MosheEichler Dec 28, 2023
5c534fc
fix playbook-conventions
MosheEichler Dec 28, 2023
7381cd2
fix unit testing
MosheEichler Dec 28, 2023
5e7b805
fix code convention
MosheEichler Dec 28, 2023
454fd93
lock
MosheEichler Dec 28, 2023
5e766a5
echo files
MosheEichler Dec 31, 2023
861e798
useDocVersionSuggestions
MosheEichler Dec 31, 2023
f155ca8
change branch
MosheEichler Dec 31, 2023
dda024e
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Jan 16, 2024
2f4d1fa
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Jan 25, 2024
c402568
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Feb 1, 2024
a5b6306
update replace tuples
MosheEichler Apr 1, 2024
418256f
Merge branch 'master' into upgrade-node-to-20.10.0
MosheEichler Apr 1, 2024
14b7d69
change branch
MosheEichler Apr 1, 2024
2df7920
escape
MosheEichler Apr 1, 2024
bf81d3b
add replacement
MosheEichler Apr 1, 2024
39d2097
chained HTML tags
MosheEichler Apr 2, 2024
e466034
remove HTML tags
MosheEichler Apr 2, 2024
cdb0cff
update firebase
MosheEichler Apr 2, 2024
addf40e
changed to poetry
MosheEichler Apr 2, 2024
7fbd39b
change python version to 3.12
MosheEichler Apr 2, 2024
1ccd5d8
fix poetry
MosheEichler Apr 2, 2024
32e778a
install pipx
MosheEichler Apr 2, 2024
5025794
revert poetry
MosheEichler Apr 2, 2024
c713cc2
python version 3.12
MosheEichler Apr 2, 2024
e53a569
update docusaurus
MosheEichler Apr 2, 2024
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
pipenv install
- run:
name: Setup Firebase
command: curl -sL https://firebase.tools | bash
command: curl -Lo ./firebase_bin https://firebase.tools/bin/linux/12.8.0
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- run:
name: Deploy to Firebase
no_output_timeout: 30m
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.17.1
20.10.0
6 changes: 3 additions & 3 deletions mdx-parse-server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const mdx = require('@mdx-js/mdx');
const http = require('http')
import { compile } from '@mdx-js/mdx';
import http from 'http';

function requestHandler(req, res) {
// console.log(req)
Expand All @@ -16,7 +16,7 @@ function requestHandler(req, res) {
req.on('end', async function () {
// console.log('Body length: ' + body.length)
try {
parsed = await mdx(body)
parsed = await compile(body)
res.end('Successfully parsed mdx')
} catch (error) {
res.statusCode = 500
Expand Down
10 changes: 5 additions & 5 deletions mdx-parse.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
const cli = require('commander');
const {readFile} = require('fs-extra');
const mdx = require('@mdx-js/mdx');
import cli from 'commander';
import fs from 'fs-extra';
import {compile} from '@mdx-js/mdx';

cli.version('0.1.0')
cli.requiredOption("-f --file <mdx file to parse>")
cli.parse(process.argv)

async function parseMDX(file) {
const contents = await readFile(file, 'utf8');
parsed = await mdx(contents)
const contents = await fs.readFile(file, 'utf8');
const parsed = await compile(contents)
Fixed Show fixed Hide fixed
console.log("parsed successfully!")
}

Expand Down
Loading
Loading