@fukict/vite-plugin 0.1.0 → 0.1.2

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 (2) hide show
  1. package/README.md +0 -1
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -131,7 +131,6 @@ const Greeting = defineFukict(({ name }) =>
131
131
  hyperscript('div', null, ['Hello ', name])
132
132
  );
133
133
  Greeting.displayName = 'Greeting'; // in development mode
134
- Greeting.__COMPONENT_TYPE__ = 'function';
135
134
  ```
136
135
 
137
136
  ## TypeScript Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fukict/vite-plugin",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Vite plugin for Fukict framework",
5
5
  "keywords": [
6
6
  "fukict",
@@ -36,7 +36,7 @@
36
36
  ],
37
37
  "dependencies": {
38
38
  "@babel/core": "^7.26.0",
39
- "@fukict/babel-preset": "0.1.0"
39
+ "@fukict/babel-preset": "0.1.2"
40
40
  },
41
41
  "devDependencies": {
42
42
  "typescript": "^5.6.3"
@@ -47,6 +47,9 @@
47
47
  "engines": {
48
48
  "node": ">=16.0.0"
49
49
  },
50
+ "publishConfig": {
51
+ "registry": "https://registry.npmjs.org/"
52
+ },
50
53
  "scripts": {
51
54
  "build": "tsc",
52
55
  "dev": "tsc --watch",