@mobileaction/action-kit 1.56.1-beta.1 → 1.57.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mobileaction/action-kit",
3
3
  "type": "module",
4
- "version": "1.56.1-beta.01",
4
+ "version": "1.57.0",
5
5
  "description": "UI Component library for Mobile Action.",
6
6
  "author": "MobileAction",
7
7
  "license": "MIT",
@@ -50,7 +50,10 @@
50
50
  "lint": "eslint",
51
51
  "lint:fix": "eslint --fix",
52
52
  "format": "prettier --write src/",
53
- "deploy-storybook": "gh-pages -d storybook-static -t true"
53
+ "deploy-storybook": "gh-pages -d storybook-static -t true",
54
+ "changeset": "changeset",
55
+ "version": "changeset version",
56
+ "release": "yarn build:local && changeset publish"
54
57
  },
55
58
  "dependencies": {
56
59
  "@headlessui/vue": "^1.7.22",
@@ -68,6 +71,8 @@
68
71
  "devDependencies": {
69
72
  "@antfu/eslint-config": "^4.15.0",
70
73
  "@babel/core": "^7.21.0",
74
+ "@changesets/changelog-github": "^0.5.2",
75
+ "@changesets/cli": "^2.29.8",
71
76
  "@rushstack/eslint-patch": "^1.2.0",
72
77
  "@storybook/addon-docs": "10.1.11",
73
78
  "@storybook/addon-links": "10.1.11",
@@ -1,3 +0,0 @@
1
- {
2
- "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
3
- }
@@ -1,93 +0,0 @@
1
- {
2
- // Disable the default formatter, use eslint instead
3
- "prettier.enable": false,
4
- "editor.formatOnSave": true,
5
- "editor.tabSize": 2,
6
- "css.customData": [
7
- ".vscode/tailwind.json"
8
- ],
9
- "scss.lint.unknownAtRules": "ignore",
10
- // Auto fix
11
- "editor.codeActionsOnSave": {
12
- "source.fixAll.eslint": "explicit",
13
- "source.organizeImports": "never"
14
- },
15
- // Silent the stylistic rules in you IDE, but still auto fix them
16
- "eslint.rules.customizations": [
17
- {
18
- "rule": "style/*",
19
- "severity": "off",
20
- "fixable": true
21
- },
22
- {
23
- "rule": "format/*",
24
- "severity": "off",
25
- "fixable": true
26
- },
27
- {
28
- "rule": "*-indent",
29
- "severity": "off",
30
- "fixable": true
31
- },
32
- {
33
- "rule": "*-spacing",
34
- "severity": "off",
35
- "fixable": true
36
- },
37
- {
38
- "rule": "*-spaces",
39
- "severity": "off",
40
- "fixable": true
41
- },
42
- {
43
- "rule": "*-order",
44
- "severity": "off",
45
- "fixable": true
46
- },
47
- {
48
- "rule": "*-dangle",
49
- "severity": "off",
50
- "fixable": true
51
- },
52
- {
53
- "rule": "*-newline",
54
- "severity": "off",
55
- "fixable": true
56
- },
57
- {
58
- "rule": "*quotes",
59
- "severity": "off",
60
- "fixable": true
61
- },
62
- {
63
- "rule": "*semi",
64
- "severity": "off",
65
- "fixable": true
66
- }
67
- ],
68
- // Enable eslint for all supported languages
69
- "eslint.validate": [
70
- "javascript",
71
- "javascriptreact",
72
- "typescript",
73
- "typescriptreact",
74
- "vue",
75
- "html",
76
- "markdown",
77
- "json",
78
- "json5",
79
- "jsonc",
80
- "yaml",
81
- "toml",
82
- "xml",
83
- "gql",
84
- "graphql",
85
- "astro",
86
- "svelte",
87
- "css",
88
- "less",
89
- "scss",
90
- "pcss",
91
- "postcss"
92
- ]
93
- }