An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update package.json

+5 -5
+5 -5
package.json
··· 10 10 "postbuild": "node internals/scripts/BuildViewers.mjs", 11 11 "preview": "electron-vite preview", 12 12 "package": "npm run build && electron-builder build --publish never", 13 - "package-all": "npm run build && electron-builder build -mwl", 14 - "package-ci": "npm run build && electron-builder --publish always", 13 + "package-all": "npm run build && electron-builder build --mac --win --linux", 14 + "package-ci": "npm run build && electron-builder build --publish always", 15 15 "package-mac": "npm run build && electron-builder build --mac", 16 16 "package-linux": "npm run build && electron-builder build --linux", 17 17 "package-win": "npm run build && electron-builder build --win --x64", ··· 20 20 "lint-fix": "npm run lint -- --fix", 21 21 "lint-styles": "stylelint '**/*.*(css|scss)'", 22 22 "lint-styles-fix": "npm run lint-styles -- --fix; exit 0", 23 - "postlint-fix": "prettier --single-quote --write '**/*.{js,jsx,json,html,css,less,scss,yml}'", 23 + "postlint-fix": "prettier --single-quote --write '**/*.{ts,tsx,js,jsx,json,html,css,less,scss,yml}'", 24 24 "postlint-styles-fix": "prettier --single-quote --write '**/*.{css,scss}'", 25 25 "test": "cross-env jest --passWithNoTests", 26 - "test-all": "npm run lint && npm run tsc && npm run build && npm test", 27 - "tsc": "tsc --noEmit" 26 + "test-all": "npm run lint && npm run lint-styles && npm run typecheck && npm run build && npm test", 27 + "typecheck": "tsc --noEmit" 28 28 }, 29 29 "lint-staged": { 30 30 "*.{js,jsx,ts,tsx}": [