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

Refactor Vue Single File Components #193

Merged
merged 14 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pids
*.pid
*.seed
*.pid.lock
screenshots/

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
Expand Down Expand Up @@ -71,4 +72,7 @@ extensionDirectory-build/index.js
extensionDirectory-build/payload.js

# chrome store files
build.zip
build.zip

# Puppeteer store files
.cache/
Empty file modified clinicDocs/001_Notice of Appearance - pro se.pdf
100755 → 100644
Empty file.
Empty file.
Empty file modified clinicDocs/5119(g) Nonstipulated.pdf
100755 → 100644
Empty file.
Empty file modified clinicDocs/5119(g) Stipulated.pdf
100755 → 100644
Empty file.
Empty file modified clinicDocs/7602 NonStip.pdf
100755 → 100644
Empty file.
Empty file modified clinicDocs/7602 Stipulated.pdf
100755 → 100644
Empty file.
Empty file modified clinicDocs/7603 stipulated.pdf
100755 → 100644
Empty file.
4 changes: 4 additions & 0 deletions extensionDirectory/.mocharc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
'watch-files': ['**/*spec.js'],
'timeout': 0,
}
5 changes: 5 additions & 0 deletions extensionDirectory/.puppeteerrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const {join} = require('path');

module.exports = {
cacheDirectory: join(__dirname, '.cache', 'puppeteer'),
};
2 changes: 1 addition & 1 deletion extensionDirectory/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const esbuild = require('esbuild');
const copyStaticFiles = require('esbuild-copy-static-files')

esbuild.build({
entryPoints: ['background.js', 'index.js', 'manage-counts.js', 'payload.js', 'filings.js', 'saveFile.js'],
entryPoints: ['background.js', 'store.mjs', 'index.js', 'manage-counts.js', 'payload.js', 'filings.js', 'saveFile.js'],
bundle: true,
outdir: 'build/',
plugins: [vuePlugin(),
Expand Down
279 changes: 0 additions & 279 deletions extensionDirectory/components.js

This file was deleted.

2 changes: 1 addition & 1 deletion extensionDirectory/components/checkout-offense-row.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default {
},
dateFormatSimple: function (value) {
if (!value) return "";
return moment(value).format("MM/DD/YYYY");
return dayjs(value).format("MM/DD/YYYY");
},
toCountyCode: function (value) {
if (!value) return "";
Expand Down
Loading