@ssplib/react-components 0.0.25 → 0.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/node
2
+
3
+ var shell = require('shelljs')
4
+
5
+ if (!shell.which('npm')) {
6
+ shell.echo('Você precisa ter o npm instalado.')
7
+ shell.exit(1)
8
+ }
9
+
10
+ if (shell.exec('npm install lodash.get').code !== 0) {
11
+ shell.echo('Erro na instalação')
12
+ shell.exit(1)
13
+ }
14
+
15
+ shell.echo('Instalado com sucesso')
package/index.js CHANGED
@@ -45,3 +45,17 @@ const auth_1 = require("./context/auth");
45
45
  Object.defineProperty(exports, "AuthContext", { enumerable: true, get: function () { return auth_1.AuthContext; } });
46
46
  const form_1 = __importDefault(require("./context/form"));
47
47
  exports.FormContext = form_1.default;
48
+ // "@mui/icons-material": "^5.11.16",
49
+ // "@mui/lab": "^5.0.0-alpha.127",
50
+ // "@mui/material": "^5.12.1",
51
+ // "@mui/x-date-pickers": "^6.2.0",
52
+ // "@emotion/react": "^11.10.6",
53
+ // "@emotion/styled": "^11.10.6",
54
+ // "@types/lodash.get": "^4.4.7",
55
+ // "lodash.get": "^4.4.2",
56
+ // "jwt-decode": "^3.1.2",
57
+ // "react-query": "^3.39.3",
58
+ // "react-hook-form": "^7.43.9",
59
+ // "dayjs": "^1.11.7",
60
+ // "cookies-next": "^2.1.1",
61
+ // "react-imask": "^6.6.0",
package/package.json CHANGED
@@ -1,26 +1,12 @@
1
1
  {
2
2
  "name": "@ssplib/react-components",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "SSP React Components",
5
- "bin": "addDep.js",
5
+ "bin": "dependencies.js",
6
6
  "main": "index.js",
7
7
  "author": "Pedro Henrique <sr.hudrick@gmail.com>",
8
8
  "license": "MIT",
9
9
  "dependencies": {
10
- "@mui/icons-material": "^5.11.16",
11
- "@mui/lab": "^5.0.0-alpha.127",
12
- "@mui/material": "^5.12.1",
13
- "@mui/x-date-pickers": "^6.2.0",
14
- "@emotion/react": "^11.10.6",
15
- "@emotion/styled": "^11.10.6",
16
- "@types/lodash.get": "^4.4.7",
17
- "lodash.get": "^4.4.2",
18
- "jwt-decode": "^3.1.2",
19
- "react-query": "^3.39.3",
20
- "react-hook-form": "^7.43.9",
21
- "dayjs": "^1.11.7",
22
- "cookies-next": "^2.1.1",
23
- "react-imask": "^6.6.0",
24
10
  "shelljs": "^0.8.5"
25
11
  },
26
12
  "repository": {
package/addDep.d.ts DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/node
2
- export {};
package/addDep.js DELETED
@@ -1,12 +0,0 @@
1
- #!/usr/bin/node
2
- "use strict";
3
- var shell = require('shelljs');
4
- if (!shell.which('npm')) {
5
- shell.echo('Você precisa ter o npm instalado.');
6
- shell.exit(1);
7
- }
8
- if (shell.exec('npm install lodash.get').code !== 0) {
9
- shell.echo('Erro na instalação');
10
- shell.exit(1);
11
- }
12
- shell.echo('Instalado com sucesso');