@fixefy/fixefy-ui-components 0.0.38 → 0.0.40
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 +9 -7
- package/yarn-error.log +95 -0
package/package.json
CHANGED
|
@@ -56,16 +56,18 @@
|
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": "18.17.1"
|
|
58
58
|
},
|
|
59
|
-
|
|
59
|
+
"files": [
|
|
60
|
+
"*"
|
|
61
|
+
],
|
|
60
62
|
"private": false,
|
|
61
|
-
"main": "
|
|
62
|
-
"module": "
|
|
63
|
+
"main": "build/index.js",
|
|
64
|
+
"module": "build/index.js",
|
|
63
65
|
"exports": {
|
|
64
66
|
".": {
|
|
65
|
-
"import": "./
|
|
66
|
-
"require": "./
|
|
67
|
+
"import": "./build",
|
|
68
|
+
"require": "./build"
|
|
67
69
|
}
|
|
68
70
|
},
|
|
69
|
-
"types": "
|
|
70
|
-
"version": "0.0.
|
|
71
|
+
"types": "build/index.d.ts",
|
|
72
|
+
"version": "0.0.40"
|
|
71
73
|
}
|
package/yarn-error.log
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
Arguments:
|
|
2
|
+
/Users/raayarozin/.nvm/versions/node/v18.17.1/bin/node /opt/homebrew/Cellar/yarn/1.22.19/libexec/bin/yarn.js pre_release
|
|
3
|
+
|
|
4
|
+
PATH:
|
|
5
|
+
/Users/raayarozin/.nvm/versions/node/v18.17.1/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Users/raayarozin/.nvm/versions/node/v18.17.1/bin:/opt/homebrew/bin:/opt/homebrew/sbin
|
|
6
|
+
|
|
7
|
+
Yarn version:
|
|
8
|
+
1.22.19
|
|
9
|
+
|
|
10
|
+
Node version:
|
|
11
|
+
18.17.1
|
|
12
|
+
|
|
13
|
+
Platform:
|
|
14
|
+
darwin arm64
|
|
15
|
+
|
|
16
|
+
Trace:
|
|
17
|
+
SyntaxError: /Users/raayarozin/Projects/fixefy-pkg/packages/fixefy-ui-components/package.json: Unexpected string in JSON at position 924
|
|
18
|
+
at JSON.parse (<anonymous>)
|
|
19
|
+
at /opt/homebrew/Cellar/yarn/1.22.19/libexec/lib/cli.js:1629:59
|
|
20
|
+
at Generator.next (<anonymous>)
|
|
21
|
+
at step (/opt/homebrew/Cellar/yarn/1.22.19/libexec/lib/cli.js:310:30)
|
|
22
|
+
at /opt/homebrew/Cellar/yarn/1.22.19/libexec/lib/cli.js:321:13
|
|
23
|
+
|
|
24
|
+
npm manifest:
|
|
25
|
+
{
|
|
26
|
+
"author": "Fixefy Inc Team",
|
|
27
|
+
"browser": {
|
|
28
|
+
"fs": false
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@fixefy/fixefy-ui-utils": "^0.0.2",
|
|
32
|
+
"@mui/material": "^5.14.11",
|
|
33
|
+
"@mui/styled-engine": "^5.14.11",
|
|
34
|
+
"@mui/styles": "^5.14.11",
|
|
35
|
+
"browserlist": "^1.0.1",
|
|
36
|
+
"react": "^18.2.0",
|
|
37
|
+
"react-dom": "^18.2.0"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@svgr/webpack": "^8.1.0",
|
|
41
|
+
"@swc/cli": "^0.1.63",
|
|
42
|
+
"@swc/core": "^1.3.101",
|
|
43
|
+
"@types/node": "^20.7.1",
|
|
44
|
+
"@types/react": "^18.2.23",
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
|
46
|
+
"@typescript-eslint/parser": "^6.7.3",
|
|
47
|
+
"eslint": "^8.50.0"
|
|
48
|
+
},
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"name": "@fixefy/fixefy-ui-components",
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "https://github.com/Fixefy/fixefy-ui-components.git"
|
|
54
|
+
},
|
|
55
|
+
"scripts": {
|
|
56
|
+
"build": "swc ./src -d ./dist/cjs --config-file ./.swcrc.cjs.json && swc ./src -d ./dist/es --config-file ./.swcrc.es.json && tsc -p ./tsconfig.types.json && yarn build:copy" "build:copy": "node ../../scripts/copy-files-ex.js",
|
|
57
|
+
"pre_release": "yarn clean && yarn && yarn build",
|
|
58
|
+
"pre_release_base": "yarn clean:base && yarn && yarn build",
|
|
59
|
+
"r": "yarn release",
|
|
60
|
+
"release": "yarn pre_release && npm pack && npm publish",
|
|
61
|
+
"release:config": "yarn pre_release && npm publish --userconfig ./.npmrc",
|
|
62
|
+
"clean:base": "rm ../../yarn.lock && yarn clean",
|
|
63
|
+
"clean": "rm -rf build && rm -rf dist-* && yarn clean:node",
|
|
64
|
+
"clean:node": "rm -rf node_modules",
|
|
65
|
+
"release_patch": "yarn patch && yarn release",
|
|
66
|
+
"release_minor": "yarn minor && yarn release",
|
|
67
|
+
"release_major": "yarn major && yarn release",
|
|
68
|
+
"patch": "yarn version --patch && git push --follow-tags",
|
|
69
|
+
"minor": "yarn version --minor && git push --follow-tags",
|
|
70
|
+
"major": "yarn version --major && git push --follow-tags"
|
|
71
|
+
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": "18.17.1"
|
|
74
|
+
},
|
|
75
|
+
"files": [
|
|
76
|
+
"dist-*/**/*"
|
|
77
|
+
],
|
|
78
|
+
"private": false,
|
|
79
|
+
"main": "./dist-cjs/index.js",
|
|
80
|
+
"module": "./dist-es/index.js",
|
|
81
|
+
"exports": {
|
|
82
|
+
".": {
|
|
83
|
+
"import": "./dist-es/index.js",
|
|
84
|
+
"require": "./dist-cjs/index.js"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"types": "./dist-types/index.d.ts",
|
|
88
|
+
"version": "0.0.22"
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
yarn manifest:
|
|
92
|
+
No manifest
|
|
93
|
+
|
|
94
|
+
Lockfile:
|
|
95
|
+
No lockfile
|