@adbayb/stack 1.15.0 → 1.16.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/README.md +10 -0
  2. package/dist/index.cjs +7 -7
  3. package/dist/index.cjs.map +4 -4
  4. package/package.json +7 -6
  5. package/template/.changeset/README.md +8 -0
  6. package/template/.changeset/config.json.tmpl +13 -0
  7. package/template/.changeset/welcome.md.tmpl +5 -0
  8. package/template/.commitlintrc.json +3 -0
  9. package/template/.editorconfig +4 -0
  10. package/template/.eslintrc.json.tmpl +3 -0
  11. package/template/.github/ISSUE_TEMPLATE/bug_report.md +34 -0
  12. package/template/.github/ISSUE_TEMPLATE/config.yml +4 -0
  13. package/template/.github/PULL_REQUEST_TEMPLATE.md.tmpl +29 -0
  14. package/template/.github/renovate.json +69 -0
  15. package/template/.github/workflows/continuous_delivery.yml +49 -0
  16. package/template/.github/workflows/continuous_integration.yml +9 -0
  17. package/template/.github/workflows/conventional_commit.yml +48 -0
  18. package/template/.github/workflows/dependency_changelog.yml +117 -0
  19. package/template/.github/workflows/workflow.yml +96 -0
  20. package/template/.gitignore.tmpl +134 -0
  21. package/template/.npmrc.tmpl +7 -0
  22. package/template/.nvmrc.tmpl +1 -0
  23. package/template/.vscode/extensions.json +8 -0
  24. package/template/.vscode/settings.json +27 -0
  25. package/template/CONTRIBUTING.md.tmpl +21 -0
  26. package/{LICENSE → template/LICENSE.tmpl} +2 -2
  27. package/template/applications/README.md +9 -0
  28. package/template/examples/README.md +6 -0
  29. package/template/examples/default/package.json.tmpl +14 -0
  30. package/template/examples/default/src/index.ts.tmpl +3 -0
  31. package/template/examples/default/tsconfig.json +5 -0
  32. package/template/libraries/README.md +9 -0
  33. package/template/package.json.tmpl +26 -0
  34. package/template/pnpm-workspace.yaml.tmpl +6 -0
  35. package/template/tools/README.md +6 -0
  36. package/template/tsconfig.json +3 -0
  37. package/template/turbo.json +24 -0
  38. package/template/{{projectName}}/README.md.tmpl +42 -0
  39. package/template/{{projectName}}/package.json.tmpl +41 -0
  40. package/template/{{projectName}}/src/index.test.ts.tmpl +5 -0
  41. package/template/{{projectName}}/src/index.ts +1 -0
  42. package/template/{{projectName}}/tsconfig.json +5 -0
  43. package/templates/default/config.json +0 -17
  44. package/templates/default/content.tar.gz +0 -0
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "{{projectName}}",
3
+ "description": "{{projectDescription}}",
4
+ "version": "0.0.0",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "sideEffects": false,
12
+ "type": "module",
13
+ "source": "./src/index.ts",
14
+ "main": "./dist/index.cjs",
15
+ "module": "./dist/index.mjs",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "require": "./dist/index.cjs",
20
+ "import": "./dist/index.mjs",
21
+ "types": "./dist/index.d.ts"
22
+ }
23
+ },
24
+ "license": "MIT",
25
+ "author": "Ayoub Adib <adbayb@gmail.com> (https://twitter.com/adbayb)",
26
+ "bugs": "https://github.com/{{repoId}}/issues",
27
+ "homepage": "https://github.com/{{repoId}}/tree/main/{{projectName}}#readme",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "{{projectUrl}}",
31
+ "directory": "{{projectName}}"
32
+ },
33
+ "scripts": {
34
+ "prepublishOnly": "pnpm build",
35
+ "clean": "rm -rf dist",
36
+ "start": "pnpm watch",
37
+ "build": "pnpm clean && quickbundle build",
38
+ "watch": "quickbundle watch",
39
+ "test": "vitest"
40
+ }
41
+ }
@@ -0,0 +1,5 @@
1
+ import { describe, test } from "vitest";
2
+
3
+ describe.todo("xxx", () => {
4
+ test.todo("should xxx");
5
+ });
@@ -0,0 +1 @@
1
+ export const HELLO_WORLD = "Hello 👋, please replace me!";
@@ -0,0 +1,5 @@
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "include": ["src"],
4
+ "exclude": ["node_modules", "dist"]
5
+ }
@@ -1,17 +0,0 @@
1
- {
2
- "files": [
3
- ".nvmrc",
4
- "CONTRIBUTING.md",
5
- "LICENSE",
6
- "package.json",
7
- "pnpm-workspace.yaml",
8
- ".changeset/config.json",
9
- ".changeset/welcome.md",
10
- ".github/PULL_REQUEST_TEMPLATE.md",
11
- "{{projectName}}/package.json",
12
- "{{projectName}}/README.md",
13
- "examples/default/package.json",
14
- "examples/default/src/index.ts"
15
- ],
16
- "folders": ["{{projectName}}"]
17
- }
Binary file