-
|
I have installed node for latest version (v20). |
Beta Was this translation helpful? Give feedback.
Answered by
jhheider
Aug 16, 2023
Replies: 2 comments 15 replies
-
|
This works for me: $ mkdir foo
$ echo 14 >foo/.node-version
$ cd foo/
$ node --version
v14.21.3
$ tea -E
SRCROOT=/Users/jacob/foo
TEA_FILES=/Users/jacob/foo/.node-version
SSL_CERT_FILE=/Users/jacob/.tea/curl.se/ca-certs/v2023.5.30/ssl/cert.pem
GIT_SSL_CAINFO=/Users/jacob/.tea/curl.se/ca-certs/v2023.5.30/ssl/cert.pem
PATH=/Users/jacob/.tea/unicode.org/v71.1.0/bin:/Users/jacob/.tea/unicode.org/v71.1.0/sbin:/Users/jacob/.tea/openssl.org/v1.1.1v/bin:/Users/jacob/.tea/nodejs.org/v14.21.3/bin:/Users/jacob/.local/bin:/Users/jacob/.tea/.local/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/MacGPG2/bin:/Library/Apple/usr/bin:/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/jacob/.cargo/bin
MANPATH=/Users/jacob/.tea/unicode.org/v71.1.0/share/man:/Users/jacob/.tea/zlib.net/v1.2.13/share/man:/Users/jacob/.tea/nodejs.org/v14.21.3/share/man:/usr/share/man
PKG_CONFIG_PATH=/Users/jacob/.tea/unicode.org/v71.1.0/lib/pkgconfig:/Users/jacob/.tea/openssl.org/v1.1.1v/lib/pkgconfig:/Users/jacob/.tea/zlib.net/v1.2.13/lib/pkgconfig
LIBRARY_PATH=/Users/jacob/.tea/unicode.org/v71.1.0/lib:/Users/jacob/.tea/openssl.org/v1.1.1v/lib:/Users/jacob/.tea/zlib.net/v1.2.13/lib:/Users/jacob/.tea/nodejs.org/v14.21.3/lib
LD_LIBRARY_PATH=/Users/jacob/.tea/unicode.org/v71.1.0/lib:/Users/jacob/.tea/openssl.org/v1.1.1v/lib:/Users/jacob/.tea/zlib.net/v1.2.13/lib:/Users/jacob/.tea/nodejs.org/v14.21.3/lib
CPATH=/Users/jacob/.tea/unicode.org/v71.1.0/include:/Users/jacob/.tea/openssl.org/v1.1.1v/include:/Users/jacob/.tea/zlib.net/v1.2.13/include:/Users/jacob/.tea/nodejs.org/v14.21.3/include
XDG_DATA_DIRS=/Users/jacob/.tea/unicode.org/v71.1.0/share:/Users/jacob/.tea/zlib.net/v1.2.13/share:/Users/jacob/.tea/nodejs.org/v14.21.3/share
DYLD_FALLBACK_LIBRARY_PATH=/Users/jacob/.tea/unicode.org/v71.1.0/lib:/Users/jacob/.tea/openssl.org/v1.1.1v/lib:/Users/jacob/.tea/zlib.net/v1.2.13/lib:/Users/jacob/.tea/nodejs.org/v14.21.3/lib
LDFLAGS=-Wl,-rpath,/Users/jacob/.tea
TEA_PREFIX=/Users/jacob/.teaDoes your |
Beta Was this translation helpful? Give feedback.
14 replies
-
|
My package.json {
"name": "@kaiwu-cloud/lowcode-engine-component",
"version": "1.0.0",
"description": "kaiwu-engine-component",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "types/index.d.ts",
"files": [
"build",
"dist",
"lib",
"es",
"types"
],
"scripts": {
"start": "build-scripts start",
"build": "build-scripts build",
"lowcode:dev": "build-scripts start --config ./build.lowcode.js",
"lowcode:build": "build-scripts build --config ./build.lowcode.js",
"f2elint-scan": "f2elint scan",
"f2elint-fix": "f2elint fix",
"prepublishOnly": "npm run build && npm run lowcode:build"
},
"directories": {
"test": "test"
},
"keywords": [
"Fusion"
],
"author": "fusion-team",
"license": "MIT",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,vue}": "f2elint exec eslint",
"**/*.{css,scss,less,acss}": "f2elint exec stylelint"
},
"peerDependencies": {
"moment": "*",
"react": "^16.x",
"react-dom": "^16.x"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.3",
"@alifd/build-plugin-lowcode": "^0.3.0",
"@alifd/theme-2": "^0.4.0",
"@alilc/build-plugin-alt": "^1.3.3",
"@alilc/lowcode-material-parser": "1.0.3",
"@storybook/addon-actions": "^6.3.1",
"@storybook/addon-docs": "^6.3.4",
"@storybook/addon-essentials": "^6.3.0",
"@storybook/addon-storysource": "^6.3.1",
"@storybook/react": "^6.3.5",
"@storybook/source-loader": "^6.3.1",
"@types/moment": "^2.13.0",
"@types/react": "^16.14.24",
"@types/react-dom": "^16.9.4",
"build-plugin-component": "^1.12.1",
"build-plugin-component-multiple": "^1.0.0-beta.53",
"build-plugin-fusion": "^0.1.0",
"f2elint": "^1.2.0"
},
"dependencies": {
"@alifd/next": "^1.26.17",
"@wangeditor/editor": "^5.1.23",
"@wangeditor/editor-for-react": "^1.0.6",
"axios": "^1.4.0",
"echarts": "^5.4.2",
"moment": "^2.29.4",
"prop-types": "^15.5.8",
"react": "^16.x",
"react-dom": "^16.x"
},
"acceptDependencies": {
"webpack": "^4.46.x"
},
"resolutions": {
"webpack": "^4.46.x"
},
"componentConfig": {
"isComponentLibrary": true,
"materialSchema": "https://unpkg.com/@kaiwu-cloud/lowcode-engine-component@1.0.0/build/lowcode/assets-prod.json"
}
}
No tea.yaml here. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment




It's possible it's finding your
.yarnrc.yml(though I don't recall a matcher for that) and the format is causing it to fail. So:mv .yarnrc.yml{,.bak}DEBUG=1 tea -E