Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@taal-enterprise/shared-components
Advanced tools
This repo is the taal shared component library released as an npm package.
This repo is the taal shared component library released as an npm package.
yarn
You can visualise the shared components by running storybook:
yarn storybook
Starting from version v4.0.0 all apps must use SharedThemeProvider
to wrap whole app.
<SharedThemeProvider appTheme={localThemeGoesHere}>
<App />
</SharedThemeProvider>
or look at https://bitbucket.org/Taal_Orchestrator/taal-console/src/main/src/components/base/app-provider.js
Its useful to test to see if the library is working correctly without having to publish. The following are instructions on how to do to this in a Next.js project:
"main": "src/index.js",
"module": "src/index.js",
yarn link
in the root of this projectyarn add -D next-transpile-modules
in the consuming project if this package is not already installed.yarn link @taal-enterprise/shared-components
in the consuming project.const path= require("path")
const withTM = require('next-transpile-modules')(['@taal-enterprise/shared-components'], {
resolveSymlinks: false,
debug: true,
});
module.exports = withTM({
// ...
eslint: {
ignoreDuringBuilds: true,
},
webpack: (config, options) => {
config.resolve.alias['styled-components'] = path.resolve('./node_modules/styled-components')
config.resolve.alias.react = path.resolve('./node_modules/react')
config.resolve.alias['react-dom'] = path.resolve('./node_modules/react-dom')
config.resolve.alias['react-hook-form'] = path.resolve('./node_modules/react-hook-form')
//See the following issue for the reason for setting the polling
//https://github.com/martpie/next-transpile-modules/issues/236#issuecomment-926583362
if (process.env.NODE_ENV === 'development') {
config.watchOptions = {
poll: 2500,
};
}
return config
}
});
As we add more peer dependancies this will need to be updated. More details on why the above is needed can be found here
yarn unlink
command and in the consuming project run yarn link @taal-enterprise/shared-components
.For more on npm link and how it works click here
yarn build
to create the bundled library.npm login
(You should already a npm account and have permison to publish the package)npm run release -- --message='DEVP-<number>: <comment>'
For more details on using np click here
FAQs
This repo is the taal shared component library released as an npm package.
We found that @taal-enterprise/shared-components 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.