[READ-ONLY] Mirror of https://github.com/danielroe/siroc. Zero-config build tooling for Node
bundle node package rollup typescript
0

Configure Feed

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

chore: lint config for publishing

Daniel Roe (Jun 9, 2020, 10:12 PM +0100) 40977388 67abb4bb

+18 -3
+3
packages/cli/.eslintignore
··· 1 + dist 2 + bin 3 + coverage
-2
packages/cli/package.json
··· 17 17 }, 18 18 "files": [ 19 19 "dist/**/*", 20 - "dist/index.d.ts", 21 20 "!**/*.map" 22 21 ], 23 22 "scripts": { ··· 31 30 "prepublishOnly": "yarn lint && yarn test", 32 31 "release": "release-it", 33 32 "test": "run-s test:*", 34 - "test:types": "tsd", 35 33 "test:unit": "jest", 36 34 "watch": "yarn build -w" 37 35 },
+3
packages/core/.eslintignore
··· 1 + dist 2 + bin 3 + coverage
+3
packages/siroc/.eslintignore
··· 1 + dist 2 + bin 3 + coverage
+1 -1
packages/siroc/package.json
··· 1 1 { 2 2 "name": "siroc", 3 - "version": "0.0.1", 3 + "version": "0.0.2", 4 4 "description": "Build tooling", 5 5 "keywords": [ 6 6 "node",
+4
packages/siroc/test/tsd/index.test-d.ts
··· 1 + import { expectType } from 'tsd' 2 + 3 + // eslint-disable-next-line 4 + expectType<void>((() => {})())
+4
packages/siroc/test/unit/index.spec.ts
··· 1 + describe('empty', () => { 2 + // eslint-disable-next-line 3 + test('test', async () => {}) 4 + })