From ea103b4dc24290e368eff4e53429b0a54d23c871 Mon Sep 17 00:00:00 2001 From: Adrian Bacon Date: Mon, 11 Mar 2024 18:03:53 -0700 Subject: [PATCH 1/6] Fix 0.4.2 build --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 81139f5..9fc51ec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,8 +17,9 @@ "rootDir": "src", "strict": true, "strictNullChecks": false, - "target": "es2017", - "types": [] + "target": "es2020", + "types": [], + "skipLibCheck": true }, "include": ["src/*"] } From fde8c64318d84f7f48e772f3b11d2a233bead94a Mon Sep 17 00:00:00 2001 From: Adrian Bacon Date: Tue, 12 Mar 2024 09:30:53 -0700 Subject: [PATCH 2/6] fix 0.4.2 build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0a0c702..0851a61 100644 --- a/Makefile +++ b/Makefile @@ -21,4 +21,4 @@ build: venv clean: venv/bin/jlpm run clean:all || echo 'not cleaning jlpm' - rm -rf venv/ + rm -rf venv node_modules yarn.lock *.egg-info From a3e0db609ef5029ebd279d48e8fad0a238a04ebc Mon Sep 17 00:00:00 2001 From: Adrian Bacon Date: Tue, 12 Mar 2024 10:21:56 -0700 Subject: [PATCH 3/6] fix 0.4.2 build --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 9fc51ec..ad1dbc1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,7 @@ "rootDir": "src", "strict": true, "strictNullChecks": false, - "target": "es2020", + "target": "es2018", "types": [], "skipLibCheck": true }, From d6bedcaf638a0a6363e5c9bced04c5949a524148 Mon Sep 17 00:00:00 2001 From: Adrian Bacon Date: Tue, 12 Mar 2024 14:21:17 -0700 Subject: [PATCH 4/6] fix 0.4.2 build --- package.json | 1 + tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7a49240..cc59056 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", "style/**/*.{css,.js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" ], + "engines": { "node": ">=16.X" }, "main": "lib/index.js", "types": "lib/index.d.ts", "style": "style/index.css", diff --git a/tsconfig.json b/tsconfig.json index ad1dbc1..9fc51ec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,7 @@ "rootDir": "src", "strict": true, "strictNullChecks": false, - "target": "es2018", + "target": "es2020", "types": [], "skipLibCheck": true }, From f2ba0212f0d5f7f40d727d5e82549d78c45f323c Mon Sep 17 00:00:00 2001 From: Adrian Bacon Date: Tue, 12 Mar 2024 14:58:40 -0700 Subject: [PATCH 5/6] fix 0.4.2 build --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e747a74..ea944e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Install node uses: actions/setup-node@v1 with: - node-version: '12.x' + node-version: '16.x' - name: Install Python uses: actions/setup-python@v2 with: @@ -80,4 +80,4 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') uses: pypa/gh-action-pypi-publish@master with: - password: ${{ secrets.PYPI_API_TOKEN }} \ No newline at end of file + password: ${{ secrets.PYPI_API_TOKEN }} From 6963f8187e26f8b6c8228ca7b9441dfc87ed103b Mon Sep 17 00:00:00 2001 From: Adrian Bacon Date: Wed, 13 Mar 2024 09:10:21 -0700 Subject: [PATCH 6/6] fix 0.4.2 build --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index cc59056..7a49240 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,6 @@ "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", "style/**/*.{css,.js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" ], - "engines": { "node": ">=16.X" }, "main": "lib/index.js", "types": "lib/index.d.ts", "style": "style/index.css",