Skip to content

Commit

Permalink
Merge branch 'm3-nwe' of https://github.com/codeforbtv/expunge-vt int…
Browse files Browse the repository at this point in the history
…o m3-jod with fix for issue when adding dockets.
  • Loading branch information
NathanWEdwards committed Nov 10, 2023
2 parents 62b99b0 + 2027fe0 commit 95a1bab
Show file tree
Hide file tree
Showing 25 changed files with 1,526 additions and 1,806 deletions.
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/
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

0 comments on commit 95a1bab

Please sign in to comment.