Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
icidasset committed Dec 12, 2023
1 parent 1be57eb commit 73fb3ee
Show file tree
Hide file tree
Showing 12 changed files with 600 additions and 306 deletions.
4 changes: 4 additions & 0 deletions packages/nest/.mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://json.schemastore.org/mocharc.json",
"require": "tsx"
}
42 changes: 15 additions & 27 deletions packages/nest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,23 @@
},
"typesVersions": {
"*": {
"module1": [
"dist/src/crypto"
]
"module1": ["dist/src/crypto"]
}
},
"files": [
"src",
"dist/src/*.d.ts",
"dist/src/*.d.ts.map"
],
"files": ["src", "dist/src/*.d.ts", "dist/src/*.d.ts.map"],
"scripts": {
"lint": "tsc --build && eslint . && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
"build": "tsc --build",
"test": "pnpm run test:node && pnpm run test:browser",
"test:node": "mocha 'test/**/!(*.browser).test.js'",
"test:browser": "playwright-test 'test/**/!(*.node).test.js'"
"test:node": "mocha 'test/**/!(*.browser).test.ts'",
"test:browser": "playwright-test 'test/**/!(*.node).test.ts'"
},
"dependencies": {
"@ipld/dag-cbor": "^9.0.6",
"@ipld/dag-pb": "^4.0.6",
"compare-versions": "^6.1.0",
"debounce-promise": "^3.1.2",
"emittery": "^1.0.1",
"interface-blockstore": "^5.2.7",
"ipfs-unixfs": "^11.1.0",
"ipfs-unixfs-exporter": "^13.2.2",
Expand All @@ -65,22 +61,21 @@
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"assert": "^2.1.0",
"fast-check": "^3.14.0",
"mocha": "^10.2.0",
"playwright-test": "^14.0.0"
"playwright-test": "^14.0.0",
"tsx": "^4.6.2"
},
"publishConfig": {
"provenance": true
},
"eslintConfig": {
"extends": [
"@fission-codes"
],
"extends": ["@fission-codes"],
"reportUnusedDisableDirectives": false,
"env": {
"mocha": true
},
"ignorePatterns": [
"dist"
],
"ignorePatterns": ["dist"],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
Expand All @@ -90,18 +85,11 @@
"varsIgnorePattern": "^_"
}
],
"unicorn/no-array-reduce": [
"off"
]
"unicorn/no-array-reduce": ["off"]
}
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*",
"assert"
]
"specials": ["bin"],
"ignores": ["@types/*", "assert"]
}
}
9 changes: 9 additions & 0 deletions packages/nest/src/app-info.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* Information about your app.
*
* @group Configuration
*/
export interface AppInfo {
name: string
creator: string
}
Loading

0 comments on commit 73fb3ee

Please sign in to comment.