
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@elliemae/pui-cli
Advanced tools
For most users this upgrade doesn't break functionality. If it does, please reach out to ui-platform-chat channel for assistance
Version 4 has breaking changes that impacts only libraries (e.g: app sdk, app widgets etc) not applications
Following changes to be done in package.json file of the library after upgrading to v4
in main field, replace ./dist/index.js with ./dist/cjs/index.js
in module field, replace ./lib/index.js with ./dist/es/index.js
add following exports field to your package.json
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
}
},
V3 uses new version of husky, after upgrading cli follow the steps below to configure git hooks
npx --no-install husky-init && npm exec -- github:typicode/husky-4-to-6 --remove-v4-config
npm run prepare
const { lintStagedConfig } = require('@elliemae/pui-cli');
module.exports = lintStagedConfig;
"lint-staged": {
"*.js": [
"npm run lint:fix",
"npm run test:staged",
"npm run gendoc"
],
"*.mdx": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
Version 3 has support to Typescript
To enable typescript for your application source code add tsconfig.json file to your application root and add the json snippet below
{
"extends": "@elliemae/pui-cli/lib/typescript/app.tsconfig.json",
"compilerOptions": {
"outDir": "dist"
},
"include": ["app/**/*"],
"exclude": ["node_modules"]
}
for library source code
{
"extends": "@elliemae/pui-cli/lib/typescript/library.tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"declarationDir": "dist/types"
},
"include": ["lib/**/*"],
"exclude": ["node_modules"]
}
FAQs
ICE MT UI Platform CLI
The npm package @elliemae/pui-cli receives a total of 0 weekly downloads. As such, @elliemae/pui-cli popularity was classified as not popular.
We found that @elliemae/pui-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.