shinkansen-transmission 2.2.40 → 2.2.42

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-transmission",
3
- "version": "2.2.40",
3
+ "version": "2.2.42",
4
4
  "description": "Shinkansen Transmission",
5
5
  "keywords": [
6
6
  "Shinkansen",
package/src/index.cjs CHANGED
@@ -1,4 +1,8 @@
1
- require('@babel/register')({ ignore: [] })
1
+ require('@babel/register')({
2
+ ignore: [
3
+ /node_modules\/(?!shinkansen-)/
4
+ ]
5
+ })
2
6
 
3
7
  const debug = require('debug')
4
8
 
package/.gitattributes DELETED
@@ -1,21 +0,0 @@
1
- # Default behavior
2
- * text=auto
3
-
4
- # LF line endings
5
- *.json text eol=lf
6
- *.mjs text eol=lf
7
- *.cjs text eol=lf
8
- *.jsx text eol=lf
9
- *.mts text eol=lf
10
- *.cts text eol=lf
11
- *.sh text eol=lf
12
- .editorconfig text eol=lf
13
- .eslintignore text eol=lf
14
- .eslintrc text eol=lf
15
- .gitattributes text eol=lf
16
- .gitignore text eol=lf
17
- .npmignore text eol=lf
18
- .npmrc text eol=lf
19
- .eslintrc text eol=lf
20
- .babelrc text eol=lf
21
- .husky/* text eol=lf
@@ -1,4 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
4
- npx cross-env DEBUG=@modernpoacher/hooks* node .husky/post-commit.mjs
@@ -1,8 +0,0 @@
1
- module.exports = (
2
- import('@modernpoacher/hooks')
3
- .then(({
4
- postCommit
5
- }) => (
6
- postCommit()
7
- ))
8
- )
@@ -1,5 +0,0 @@
1
- import {
2
- postCommit
3
- } from '@modernpoacher/hooks'
4
-
5
- export default postCommit()
package/.husky/pre-commit DELETED
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
4
- npm run lint
5
- npm run coverage