@cluesurf/form 0.6.8 → 0.6.10

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 (3) hide show
  1. package/CLAUDE.md +1 -0
  2. package/make.js +1 -0
  3. package/package.json +1 -11
package/CLAUDE.md CHANGED
@@ -18,3 +18,4 @@
18
18
  PLEASE MAKE SURE THAT IS POSSIBLE.
19
19
  - All readmes should have a LOWERCASE file name, exactly as `readme.md`,
20
20
  not `README.md`.
21
+ - NEVER ADD .js TO IMPORTS!
package/make.js ADDED
@@ -0,0 +1 @@
1
+ export { default } from './host/make/index.js'
package/package.json CHANGED
@@ -1,19 +1,9 @@
1
1
  {
2
2
  "name": "@cluesurf/form",
3
- "version": "0.6.8",
3
+ "version": "0.6.10",
4
4
  "license": "MIT",
5
5
  "main": "./host/index.js",
6
6
  "type": "module",
7
- "exports": {
8
- ".": {
9
- "types": "./host/index.d.ts",
10
- "default": "./host/index.js"
11
- },
12
- "./make": {
13
- "types": "./host/make/index.d.ts",
14
- "default": "./host/make/index.js"
15
- }
16
- },
17
7
  "scripts": {
18
8
  "make": "rm -rf host && tsc && tsc-alias",
19
9
  "scan": "rm -rf host && concurrently --kill-others \"tsc -w\" \"tsc-alias -w\"",