-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix cache and most html issues (#27)
* derp Signed-off-by: Daniel Sieradski <[email protected]> * update docs Signed-off-by: Daniel Sieradski <[email protected]> * tweaks Signed-off-by: Daniel Sieradski <[email protected]> * text instead Signed-off-by: Daniel Sieradski <[email protected]> * different html to markdown converter Signed-off-by: Daniel Sieradski <[email protected]> * update docs, test run Signed-off-by: Daniel Sieradski <[email protected]> * try another md converter Signed-off-by: Daniel Sieradski <[email protected]> * add jsdom Signed-off-by: Daniel Sieradski <[email protected]> * try again Signed-off-by: Daniel Sieradski <[email protected]> * wtf Signed-off-by: Daniel Sieradski <[email protected]> * i’m so dumb Signed-off-by: Daniel Sieradski <[email protected]> * try and fail miserably at parcel Signed-off-by: Daniel Sieradski <[email protected]> * parcel babel Signed-off-by: Daniel Sieradski <[email protected]> * babel parcel again Signed-off-by: Daniel Sieradski <[email protected]> * move to typescript Signed-off-by: Daniel Sieradski <[email protected]> * esbuild saves the day! Signed-off-by: Daniel Sieradski <[email protected]> * update action Signed-off-by: Daniel Sieradski <[email protected]> * erps Signed-off-by: Daniel Sieradski <[email protected]> * again Signed-off-by: Daniel Sieradski <[email protected]> * maybe? Signed-off-by: Daniel Sieradski <[email protected]> * cache bust Signed-off-by: Daniel Sieradski <[email protected]> * fix html Signed-off-by: Daniel Sieradski <[email protected]> * strip tags Signed-off-by: Daniel Sieradski <[email protected]> * and again Signed-off-by: Daniel Sieradski <[email protected]> * try this Signed-off-by: Daniel Sieradski <[email protected]> * tweak payload Signed-off-by: Daniel Sieradski <[email protected]> * aaand again Signed-off-by: Daniel Sieradski <[email protected]> * ffs Signed-off-by: Daniel Sieradski <[email protected]> * sigh Signed-off-by: Daniel Sieradski <[email protected]> * derp Signed-off-by: Daniel Sieradski <[email protected]> * try hash again Signed-off-by: Daniel Sieradski <[email protected]> * derps Signed-off-by: Daniel Sieradski <[email protected]> * 1.2.6
- Loading branch information
1 parent
4a16dc8
commit 95ee5bd
Showing
26 changed files
with
32,183 additions
and
27,438 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
tsconfig.json | ||
node_modules | ||
dist | ||
yarn.lock | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"root": true, | ||
"extends": [ | ||
"standard", | ||
"prettier", | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:json/recommended", | ||
"plugin:markdown/recommended", | ||
"plugin:yml/recommended", | ||
"plugin:yml/prettier" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"overrides": [ | ||
{ | ||
"files": [ | ||
"*.yml" | ||
], | ||
"rules": { | ||
"camelcase": "off", | ||
"no-labels": "off", | ||
"no-unused-labels": "off", | ||
"no-unused-expressions": "off" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
./node_modules/.bin/ncc build action.js --license licenses.txt | ||
npm run bundle | ||
git add dist | ||
./node_modules/.bin/lint-staged --allow-empty | ||
npm run lint-staged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ inputs: | |
required: false | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
main: 'dist/index.cjs' |
Oops, something went wrong.