mimir-ui-kit 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.js +9 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Корпоративный UI-kit компании Газпромбанк Автолизинг
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ export function gentleWanr(namespace) {
2
+ const didWarn = {};
3
+ return (message) => {
4
+ if (!didWarn[message]) {
5
+ console.warn(`[${namespace} ${message}]`);
6
+ didWarn[message] = true;
7
+ }
8
+ }
9
+ }
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "mimir-ui-kit",
3
+ "version": "0.0.1",
4
+ "description": "Корпоративный UI-kit компании Газпромбанк Автолизинг",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://git.autogpbl.ru/PonomarevAI/mimir-autogpbl-ui-kit.git"
12
+ },
13
+ "author": "",
14
+ "license": "ISC"
15
+ }