mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 01:47:39 +00:00
refactor: use gts instead of xo
feat: add browser opening to test:notification feat: add c8 and mocha for testing feat: update Docker and ci style: update editorconfig
This commit is contained in:
@@ -64,7 +64,7 @@ To customize streetmerchant, make a copy of `dotenv-example` as `dotenv` and mak
|
||||
|
||||
The command `npm run start:dev` can be used instead of `npm run start` to automatically restart the project when filesystem changes are detected in the `src/` folder or `dotenv` file.
|
||||
|
||||
Use `npm run lint` to see any linting uses and `npm run lint:fix` to automatically fix the issues it can.
|
||||
Use `npm run lint` to see any linting uses and `npm run fix` to automatically fix the issues it can.
|
||||
|
||||
### Developing in Docker
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
app.document$.subscribe(function() {
|
||||
var tables = document.querySelectorAll("article table")
|
||||
tables.forEach(function(table) {
|
||||
new Tablesort(table)
|
||||
})
|
||||
})
|
||||
app.document$.subscribe(() => {
|
||||
const tables = document.querySelectorAll('article table');
|
||||
tables.forEach(table => {
|
||||
new Tablesort(table);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user