@jadeja/ts 1.0.0-alpha.4 → 1.0.0-alpha.5

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/CHANGELOG.md CHANGED
@@ -1,26 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.0-alpha.5
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: infra.
8
+ - fix ci/cd for additional checking
9
+ - fix lint-staged running on full project
10
+ - chore: update readme file for usage example
11
+
3
12
  ## 1.0.0-alpha.4
4
13
 
5
- ## Patch Changes
14
+ ### Patch Changes
6
15
 
7
16
  - fix: moved `glob` from dependencies to peerDependencies
8
17
 
9
18
  ## 1.0.0-alpha.3
10
19
 
11
- ## Patch Changes
20
+ ### Patch Changes
12
21
 
13
22
  - fix: `_virtual` is missing from `dist` folder
14
23
 
15
24
  ## 1.0.0-alpha.2
16
25
 
17
- ## Patch Changes
26
+ ### Patch Changes
18
27
 
19
28
  - chore: bump version and add changelog entry
20
29
 
21
30
  ## 1.0.0-alpha.1
22
31
 
23
- ## Minor Changes
32
+ ### Minor Changes
24
33
 
25
34
  - refactor: package architecture
26
35
  - remove all `index.ts` files
package/README.md CHANGED
@@ -10,6 +10,11 @@ _an opinionated TypeScript toolkit_
10
10
 
11
11
  Documentation will be added in future releases.
12
12
 
13
+ ### See In Action
14
+
15
+ - [`@jadeja/docs`](https://github.com/JadejaHQ/docs)
16
+ - [`shilpcss`](https://github.com/JadejaHQ/shilpcss)
17
+
13
18
  <br />
14
19
 
15
20
  ## Community
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jadeja/ts",
3
3
  "description": "an opinionated TypeScript toolkit",
4
- "version": "1.0.0-alpha.4",
4
+ "version": "1.0.0-alpha.5",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./configs/ts/*": {
@@ -101,7 +101,8 @@
101
101
  "scripts": {
102
102
  "check": "tsc && oxfmt --check --disable-nested-config && oxlint --disable-nested-config",
103
103
  "fix": "oxlint --fix --disable-nested-config && oxfmt --disable-nested-config",
104
- "build": "pnpm check && vite build",
104
+ "build:nc": "vite build",
105
+ "build": "pnpm check && pnpm build:nc",
105
106
  "publish-it": "pnpm build && pnpm publish --tag alpha --access public --no-git-checks"
106
107
  }
107
108
  }