{"id":23289367,"url":"https://github.com/untile/js-configs","last_synced_at":"2026-02-20T19:31:32.345Z","repository":{"id":172702595,"uuid":"515243355","full_name":"untile/js-configs","owner":"untile","description":"Untile configs and conventions","archived":false,"fork":false,"pushed_at":"2026-02-19T14:22:59.000Z","size":965,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-02-19T15:48:16.733Z","etag":null,"topics":["browserlist","commitlint","cypress","es6","eslint","javascript","jest","nextjs","node","nodejs","prettier","react","react-native","styled-components","stylelint","typescript","vitest"],"latest_commit_sha":null,"homepage":"https://untile.pt","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/untile.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-18T15:37:10.000Z","updated_at":"2025-12-03T09:24:11.000Z","dependencies_parsed_at":"2024-12-19T20:34:15.648Z","dependency_job_id":"c700889f-59c7-4352-bb81-b2f1af3a08d6","html_url":"https://github.com/untile/js-configs","commit_stats":{"total_commits":114,"total_committers":5,"mean_commits":22.8,"dds":0.5877192982456141,"last_synced_commit":"46a25559ef46f88f549ba0088a02ae755ddcd5b1"},"previous_names":["untile/js-configs"],"tags_count":70,"template":false,"template_full_name":null,"purl":"pkg:github/untile/js-configs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untile%2Fjs-configs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untile%2Fjs-configs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untile%2Fjs-configs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untile%2Fjs-configs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/untile","download_url":"https://codeload.github.com/untile/js-configs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untile%2Fjs-configs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29661594,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T16:33:43.953Z","status":"ssl_error","status_checked_at":"2026-02-20T16:33:43.598Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browserlist","commitlint","cypress","es6","eslint","javascript","jest","nextjs","node","nodejs","prettier","react","react-native","styled-components","stylelint","typescript","vitest"],"created_at":"2024-12-20T04:14:19.364Z","updated_at":"2026-02-20T19:31:32.327Z","avatar_url":"https://github.com/untile.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cbr\u003e\u003cimg width=\"250\" src=\"https://untile.pt/logo.png\" /\u003e\u003cbr\u003e\n\u003c/p\u003e\n\n\u003ch4 align=\"center\"\u003e\n  A common configs and conventions for Untile projects.\n\u003c/h4\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/untile/js-configs/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"Untile js-config is released under the MIT license.\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://twitter.com/intent/follow?screen_name=untiledigital\"\u003e\n    \u003cimg src=\"https://img.shields.io/twitter/follow/untiledigital.svg?label=Follow%20@untiledigital\" alt=\"Follow @untiledigital\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## Setup\n\nThis project uses [yarn workspaces](https://classic.yarnpkg.com/lang/en/docs/workspaces/) to manage multiple packages.\n\n- Node.js 20 or higher\n- Yarn 4.5.x\n- Corepack enabled (run `corepack enable` if you haven't already)\n\n### Install dependencies\n\n```sh\nyarn\n```\n\n### Run lint\n\n```sh\nyarn lint\n```\n\n### Run full test suite\n\n```sh\nyarn test\n```\n\n## Adding new packages\n\nTo ensure that every part of the monorepo infrastructure works as intended, every package must be located within the `./packages/\u003cnew-package-name\u003e` folder.\n\n### Release setup\n\nAfter creating a package, add a release script to the `./packages/\u003cnew-package-name\u003e/package.json` file, and another one to the main `./package.json` file with:\n\n```json\n  \"release:\u003cnew-package-name\u003e\": \"yarn workspace @untile/\u003cnew-package-name\u003e release\",\n```\n\n### Changelog setup\n\nWhen creating new packages, keep in mind that the **auto labeler** must have the new package added in `.github/labeler`, so that it can label its pull requests accordingly and they are included in the correct `CHANGELOG.md`. To add new packages to auto labeler run:\n\n```sh\nsh bin/auto-labeler.sh\n```\n\n## Release \u0026 Publish\n\nMake sure that you have configured `GITHUB_TOKEN` in your globals.\nThis will also publish your packages that have changes to [NPM](https://www.npmjs.com/~untile).\n\n```sh\nyarn release:[\u003cpackage-name\u003e] [\u003cnew version\u003e | major | minor | patch]\ngit push origin master \u0026\u0026 git push --tags\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funtile%2Fjs-configs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funtile%2Fjs-configs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funtile%2Fjs-configs/lists"}