Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.2.0/schema.json",
"changelog": "./dist/changesets-changelog/changesets-changelog.js",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
8 changes: 8 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mode": "pre",
"tag": "rc",
"initialVersions": {
"@reallyland/tools": "0.1.1"
},
"changesets": []
}
5 changes: 5 additions & 0 deletions .changeset/strong-glasses-dance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@reallyland/tools": minor
---

feat: add changesets-changelog
7 changes: 4 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"ignorePatterns": [
"_template.*",
"*.config.ts",
"**/*.mjs"
"**/*.mjs",
"**/dist/**/*.js"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
Expand Down Expand Up @@ -56,11 +57,11 @@
"fixMixedExportsWithInlineTypeSpecifier": true
}
],
"import/consistent-type-specifier-style": ["error", "prefer-inline"],
"@typescript-eslint/consistent-type-imports": [
"error", {
"prefer": "type-imports",
"disallowTypeAnnotations": false
"disallowTypeAnnotations": false,
"fixStyle": "inline-type-imports"
}
],
"@typescript-eslint/no-empty-interface": [
Expand Down
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.tabSize": 2,
"files.insertFinalNewline": false,
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.importModuleSpecifierEnding": "js",
"typescript.preferences.quoteStyle": "single",
"typescript.tsdk": "node_modules/typescript/lib"
}
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
<!-- [MIT License](https://motss.mit-license.org/) © Rong Sen Ng (motss) -->

<!-- Links -->
[home.ts]: /src/home.ts
[sitemap.xml]: /assets/sitemap.xml

<!-- References -->
Expand Down
12 changes: 12 additions & 0 deletions clean2.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/sh

rm -frvd ./**/**/.turbo # ./**/.turbo does not work.
rm -frvd ./node_modules/.cache/turbo
rm -frvd ./packages/**/coverage
rm -frvd ./packages/**/dist
rm -fvd ./**/*.tsbuildinfo
rm -fvd ./packages/**.d.ts
rm -fvd ./packages/**.d.ts.map
rm -fvd ./packages/**.js
rm -fvd ./packages/**.js.map
rm -fvd ./packages/**/*.tsbuildinfo
Loading