-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from johnsyweb/paj/new-stuff
Volunteers on top!
- Loading branch information
Showing
28 changed files
with
1,515 additions
and
3,415 deletions.
There are no files selected for viewing
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,11 +1,8 @@ | ||
/.amo-upload-uuid | ||
/.web-extension-id | ||
/chromium* | ||
/dist/ | ||
/eventuate* | ||
/node_modules | ||
/target | ||
/web-ext-artifacts | ||
|
||
# managed by crackle | ||
/dist | ||
# end managed by crackle |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import tseslint from "typescript-eslint"; | ||
|
||
export default [ | ||
{files: ["**/*.{js,mjs,cjs,ts}"]}, | ||
{languageOptions: { globals: globals.browser }}, | ||
{ignores: ["webpack.config.js", "dist/*.js"]}, | ||
pluginJs.configs.recommended, | ||
...tseslint.configs.strict, | ||
...tseslint.configs.stylistic, | ||
] | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
{ | ||
"name": "eventuate", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"description": "Extracts information from parkrun results pages for inclusion in reports.", | ||
"keywords": [ | ||
"parkrun", | ||
|
@@ -18,43 +18,34 @@ | |
}, | ||
"license": "MIT", | ||
"author": "Pete Johns", | ||
"exports": { | ||
".": { | ||
"types": { | ||
"import": "./dist/index.d.mts", | ||
"require": "./dist/index.d.ts" | ||
}, | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "pnpm crackle:package ; pnpm rename && pnpm web-ext:build && pnpm repack-for-chromium", | ||
"crackle:package": "crackle package", | ||
"rename": "bash -c 'mv ./dist/index.cjs ./dist/index.js'", | ||
"build": "webpack", | ||
"package": "pnpm lint && pnpm build && pnpm web-ext:lint && pnpm web-ext:build && pnpm repack-for-chromium", | ||
"repack-for-chromium": "bash './script/repack-for-chromium'", | ||
"start": "web-ext run -v -u https://www.parkrun.com.au/brimbank/results/latestresults/", | ||
"test": "jest", | ||
"lint": "eslint .", | ||
"web-ext:build": "web-ext build -o", | ||
"web-ext:lint": "web-ext lint", | ||
"start": "web-ext run -v -u https://www.parkrun.com.au/coburg/results/latestresults/" | ||
"web-ext:lint": "web-ext lint" | ||
}, | ||
"devDependencies": { | ||
"@crackle/cli": "^0.15.5", | ||
"@eslint/js": "^9.13.0", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/jest": "^29.5.13", | ||
"@types/node": "^22.7.5", | ||
"@types/node": "^22.7.7", | ||
"copy-webpack-plugin": "^12.0.2", | ||
"eslint": "^9.13.0", | ||
"globals": "^15.11.0", | ||
"jest": "^29.7.0", | ||
"prettier": "^3.3.3", | ||
"ts-jest": "^29.2.5", | ||
"ts-loader": "^9.5.1", | ||
"ts-node-dev": "^2.0.0", | ||
"typescript": "^5.6.3", | ||
"web-ext": "^8.3.0" | ||
"typescript-eslint": "^8.10.0", | ||
"web-ext": "^8.3.0", | ||
"webpack": "^5.95.0", | ||
"webpack-cli": "^5.1.4" | ||
}, | ||
"packageManager": "[email protected]", | ||
"webExt": { | ||
|
@@ -66,9 +57,6 @@ | |
"LICENSE.txt", | ||
"README.md", | ||
"chromium*", | ||
"crackle.config.ts", | ||
"dist/index.mjs", | ||
"dist/index.d.*", | ||
"jest.config.ts", | ||
"package.json", | ||
"pnpm-lock.yaml", | ||
|
@@ -79,4 +67,4 @@ | |
"tsconfig.json" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.