File tree Expand file tree Collapse file tree 6 files changed +59
-0
lines changed Expand file tree Collapse file tree 6 files changed +59
-0
lines changed Original file line number Diff line number Diff line change 1+ .DS_Store
2+ node_modules
3+ * .log
Original file line number Diff line number Diff line change 1+ {
2+ "arrowParens": "always",
3+ "bracketSameLine": false,
4+ "bracketSpacing": true,
5+ "embeddedLanguageFormatting": "auto",
6+ "endOfLine": "lf",
7+ "htmlWhitespaceSensitivity": "css",
8+ "insertPragma": false,
9+ "jsxSingleQuote": true,
10+ "printWidth": 999,
11+ "proseWrap": "preserve",
12+ "quoteProps": "as-needed",
13+ "requirePragma": false,
14+ "semi": false,
15+ "singleAttributePerLine": false,
16+ "singleQuote": true,
17+ "tabWidth": 2,
18+ "trailingComma": "none",
19+ "useTabs": false,
20+ "vueIndentScriptAndStyle": false
21+ }
Original file line number Diff line number Diff line change 1+ // this is commonjs entry-point, and should probly be built from index.js
Original file line number Diff line number Diff line change 1+ // this is the primary entry-point, in ESM module
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " sqldef" ,
3+ "version" : " 1.0.0" ,
4+ "type" : " module" ,
5+ "description" : " Simple wasm wrapper around sqldef for easy use with web/node/bun/deno" ,
6+ "keywords" : [
7+ " migration" ,
8+ " mysql" ,
9+ " postgres"
10+ ],
11+ "main" : " index.cjs" ,
12+ "exports" : {
13+ "." : " ./index.js"
14+ },
15+ "scripts" : {
16+ "test" : " node --test"
17+ },
18+ "author" :
" David Konsumer <[email protected] > (http://konsumer.js.org)" ,
19+ "license" : " MIT" ,
20+ "repository" : {
21+ "type" : " git" ,
22+ "url" : " git+https://github.com/sqldef/sqldef-wasm.git"
23+ },
24+ "bugs" : {
25+ "url" : " https://github.com/sqldef/sqldef-wasm/issues"
26+ },
27+ "homepage" : " https://github.com/sqldef/sqldef-wasm#readme"
28+ }
Original file line number Diff line number Diff line change 1+ import { test } from 'node:test'
2+
3+ test ( 'should have unit-tests' , async ( { assert } ) => {
4+ assert . ok ( 1 + 1 === 2 )
5+ } )
You can’t perform that action at this time.
0 commit comments