this repo has no description
0
fork

Configure Feed

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

fix script order

+7 -7
+2 -2
package.json
··· 36 36 "format:fix": "npm run _prettier -- --write", 37 37 "lint:check": "npm run _eslint", 38 38 "lint:fix": "npm run _eslint -- --fix", 39 - "quality:check": "npm run format:check && npm run lint:check && npm run unused:check", 40 - "quality:fix": "npm run format:fix && npm run lint:fix && npm run unused:fix", 39 + "quality:check": "npm run lint:check && npm run format:check && npm run unused:check", 40 + "quality:fix": "npm run lint:fix && npm run format:fix && npm run unused:fix", 41 41 "test": "node --experimental-test-module-mocks --test", 42 42 "test:coverage": "node --experimental-test-coverage --experimental-test-module-mocks --test", 43 43 "unused:check": "npm run _knip",
+3 -4
test/cli/actions/config/set-mode.js
··· 73 73 }); 74 74 75 75 it('throws when profile is not a valid terminal profile', async () => { 76 - await assert.rejects( 77 - setMode({mode: 'dark', profile: 'Nonexistent'}), 78 - {name: 'ArgumentError'}, 79 - ); 76 + await assert.rejects(setMode({mode: 'dark', profile: 'Nonexistent'}), { 77 + name: 'ArgumentError', 78 + }); 80 79 }); 81 80 });
+2 -1
test/cli/actions/config/show.js
··· 13 13 }; 14 14 mock.module('#library', {namedExports: library}); 15 15 16 - const {default: show} = await import('../../../../source/cli/actions/config/show.js'); 16 + const {default: show} = 17 + await import('../../../../source/cli/actions/config/show.js'); 17 18 18 19 describe('show', () => { 19 20 beforeEach(() => {