shinkansen-sprockets 1.0.41 → 1.0.44

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.
Files changed (2) hide show
  1. package/nvm.sh +2 -2
  2. package/package.json +3 -2
package/nvm.sh CHANGED
@@ -10,7 +10,7 @@ then
10
10
 
11
11
  source $NVM/nvm.sh
12
12
  else
13
- NVM=$(brew --prefix nvm)
13
+ NVM=$(brew --prefix nvm 2> /dev/null)
14
14
  if [ -f "$NVM/nvm.sh" ];
15
15
  then
16
16
  unset npm_package_scripts_nvm
@@ -21,7 +21,7 @@ else
21
21
  fi
22
22
  fi
23
23
 
24
- VERSION=$(nvm --version)
24
+ VERSION=$(nvm --version 2> /dev/null)
25
25
 
26
26
  if [ -z "$VERSION" ];
27
27
  then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-sprockets",
3
- "version": "1.0.41",
3
+ "version": "1.0.44",
4
4
  "description": "Shinkansen Sprockets",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -35,7 +35,7 @@
35
35
  "pretest": "npm run nvm",
36
36
  "test": "cross-env NODE_ENV=test jest --collect-coverage false --verbose --run-in-band",
37
37
  "storybook": "npm run build && npm run transform && start-storybook -p 6007",
38
- "nvm": "bash nvm.sh"
38
+ "nvm": "bash nvm.sh 2> /dev/null"
39
39
  },
40
40
  "dependencies": {
41
41
  "classnames": "^2.3.2",
@@ -43,6 +43,7 @@
43
43
  "fast-deep-equal": "^3.1.3"
44
44
  },
45
45
  "devDependencies": {
46
+ "@babel/compat-data": "^7.21.7",
46
47
  "@babel/core": "^7.21.8",
47
48
  "@babel/eslint-parser": "^7.21.8",
48
49
  "@babel/plugin-proposal-class-properties": "^7.18.6",