@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.
- package/README.md +10 -0
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +4 -4
- package/package.json +7 -6
- package/template/.changeset/README.md +8 -0
- package/template/.changeset/config.json.tmpl +13 -0
- package/template/.changeset/welcome.md.tmpl +5 -0
- package/template/.commitlintrc.json +3 -0
- package/template/.editorconfig +4 -0
- package/template/.eslintrc.json.tmpl +3 -0
- package/template/.github/ISSUE_TEMPLATE/bug_report.md +34 -0
- package/template/.github/ISSUE_TEMPLATE/config.yml +4 -0
- package/template/.github/PULL_REQUEST_TEMPLATE.md.tmpl +29 -0
- package/template/.github/renovate.json +69 -0
- package/template/.github/workflows/continuous_delivery.yml +49 -0
- package/template/.github/workflows/continuous_integration.yml +9 -0
- package/template/.github/workflows/conventional_commit.yml +48 -0
- package/template/.github/workflows/dependency_changelog.yml +117 -0
- package/template/.github/workflows/workflow.yml +96 -0
- package/template/.gitignore.tmpl +134 -0
- package/template/.npmrc.tmpl +7 -0
- package/template/.nvmrc.tmpl +1 -0
- package/template/.vscode/extensions.json +8 -0
- package/template/.vscode/settings.json +27 -0
- package/template/CONTRIBUTING.md.tmpl +21 -0
- package/{LICENSE → template/LICENSE.tmpl} +2 -2
- package/template/applications/README.md +9 -0
- package/template/examples/README.md +6 -0
- package/template/examples/default/package.json.tmpl +14 -0
- package/template/examples/default/src/index.ts.tmpl +3 -0
- package/template/examples/default/tsconfig.json +5 -0
- package/template/libraries/README.md +9 -0
- package/template/package.json.tmpl +26 -0
- package/template/pnpm-workspace.yaml.tmpl +6 -0
- package/template/tools/README.md +6 -0
- package/template/tsconfig.json +3 -0
- package/template/turbo.json +24 -0
- package/template/{{projectName}}/README.md.tmpl +42 -0
- package/template/{{projectName}}/package.json.tmpl +41 -0
- package/template/{{projectName}}/src/index.test.ts.tmpl +5 -0
- package/template/{{projectName}}/src/index.ts +1 -0
- package/template/{{projectName}}/tsconfig.json +5 -0
- package/templates/default/config.json +0 -17
- 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 @@
|
|
|
1
|
+
export const HELLO_WORLD = "Hello 👋, please replace me!";
|
|
@@ -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
|