shinkansen-sprockets 1.1.424 → 1.1.425

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/package.json +5 -5
  2. package/transform.sh +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-sprockets",
3
- "version": "1.1.424",
3
+ "version": "1.1.425",
4
4
  "description": "Shinkansen Sprockets",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -24,12 +24,12 @@
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "git@github.com/modernpoacher/shinkansen-sprockets.git"
27
+ "url": "git+ssh://git@github.com/modernpoacher/shinkansen-sprockets.git"
28
28
  },
29
29
  "scripts": {
30
- "build": "cross-env DEBUG=shinkansen-sprockets webpack",
30
+ "build": "cross-env DEBUG=shinkansen-sprockets* webpack",
31
31
  "build-storybook": "storybook build",
32
- "build:watch": "cross-env DEBUG=shinkansen-sprockets webpack --watch",
32
+ "build:watch": "cross-env DEBUG=shinkansen-sprockets* webpack --watch",
33
33
  "lint": "eslint . .storybook --ext .mjs,.cjs,.jsx,.mts,.cts",
34
34
  "lint:fix": "npm run lint -- --fix",
35
35
  "nvm": "bash nvm.sh",
@@ -40,7 +40,7 @@
40
40
  "pretest": "npm run nvm",
41
41
  "storybook": "storybook dev -p 6007",
42
42
  "test": "cross-env NODE_ENV=test jest",
43
- "transform": "cross-env DEBUG=shinkansen-sprockets ./transform.sh"
43
+ "transform": "cross-env DEBUG=shinkansen-sprockets* ./transform.sh"
44
44
  },
45
45
  "dependencies": {
46
46
  "classnames": "^2.5.1",
package/transform.sh CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/bin/bash
2
2
 
3
- DEBUG=@modernpoacher/sprockets*
3
+ DEBUG="${DEBUG:-@modernpoacher/sprockets*}"
4
4
  node -e 'import("./build/transform.mjs").then(({ default: transform }) => transform())'