Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@nordnet/ui
Advanced tools
[![NPM version][npm-image]][npm-url] [![Build Status](https://github.com/nordnet/ui/workflows/build/badge.svg)](https://github.com/nordnet/ui/actions) [![Coverage Status][codecov-image]][codecov-url] [![Dependency Status][depstat-image]][depstat-url]
npm install --save @nordnet/ui # or
yarn add @nordnet/ui
// src/root.js
import { createRoot } from 'react-dom/client';
import { ThemeProvider } from 'styled-components';
import { theme } from '@nordnet/ui';
import App from './App';
const container = document.getElementById('app');
const root = createRoot(container); // createRoot(container!) if you use TypeScript
root.render(
<ThemeProvider theme={theme}>
<App />
</ThemeProvider>,
);
// src/App.js
import { Button } from '@nordnet/ui';
const App = (props) => (
<div>
<Button size="l" variant="secondary">
Hit me
</Button>
</div>
);
export default App;
Developing workflow can be found in the contributing guidelines.
Everyone is welcome to contribute. Please take a moment to review the contributing guidelines.
semantic-release@16.0.0-beta.18
To upgrade to latest 17.1.1
you need to upgrade away from beta
first:
https://github.com/semantic-release/semantic-release/releases/tag/v16.0.0
This is the most troublesome part:
⚠️ For v16.0.0@beta users only: In v16, a JSON object stored in a Git note is used to keep track of the channels on which a version has been released, the @{channel} suffix is no longer necessary.
and it essentially will ask you to fix some git internals yourself, but there is a better way. v16.0.0-beta.39 release notes offers a script in this gist file https://gist.github.com/pvdlg/6b19e529ee5c1a20645675a44e5b3239. You will have to go through it and make it work.
https://github.com/semantic-release/semantic-release/releases/tag/v17.0.0
afaik, it only seems to drop support for non-lts node 10
This open source project released by Nordnet is licensed under the MIT license.
FAQs
[![NPM version][npm-image]][npm-url] [![Build Status](https://github.com/nordnet/ui/workflows/build/badge.svg)](https://github.com/nordnet/ui/actions) [![Coverage Status][codecov-image]][codecov-url] [![Dependency Status][depstat-image]][depstat-url]
The npm package @nordnet/ui receives a total of 10 weekly downloads. As such, @nordnet/ui popularity was classified as not popular.
We found that @nordnet/ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.