Skip to content

Commit

Permalink
feat: major project restructure as monorepo
Browse files Browse the repository at this point in the history
- split main API into separate packages (migrate to `/packages`)
- update package scope to `@genart-api` (from `@thi.ng`)
- update build files (migrate to `/tools`)
- preliminary readme updates
  • Loading branch information
postspectacular committed Dec 5, 2024
1 parent a0bedf3 commit 1f15711
Show file tree
Hide file tree
Showing 77 changed files with 4,088 additions and 7,040 deletions.
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
* text=auto eol=lf
*.gif -text
*.jpg -text
*.mp4 -text
*.pdf -text
*.png -text
*.gz -text
*.meta linguist-language=text
yarn.lock -diff
23 changes: 17 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
/build
/doc
/examples/*/dist
/examples/*/public
/node_modules
/public
/.yarn

css/framework.json
dev
doc
dist
node_modules
public
.zig-cache
zig-out

examples/layer-test
packages/adapter-layer

wasm-api-build.zig

*.css
*.js
*.d.ts
*.map
*.wasm
*.wast
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"useTabs": true,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"arrowParens": "always",
"endOfLine": "lf"
}
15 changes: 15 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
compressionLevel: mixed

enableGlobalCache: false

logFilters:
- code: YN0076
level: discard

nmMode: hardlinks-global

nodeLinker: node-modules

npmRegistryServer: "https://registry.npmjs.org"

yarnPath: .yarn/releases/yarn-4.5.3.cjs
Loading

0 comments on commit 1f15711

Please sign in to comment.