shinkansen-sprockets 1.0.51 → 1.0.53

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/babel.config.cjs CHANGED
@@ -50,12 +50,9 @@ const plugins = [
50
50
  ],
51
51
  [
52
52
  'module-resolver', {
53
- root: [
54
- '.'
55
- ],
56
53
  alias: {
57
54
  /**
58
- * Storybook
55
+ * Storybook
59
56
  */
60
57
  'shinkansen-sprockets/sprockets/check-answers': './src/sprockets/check-answers/index.cjs',
61
58
  'shinkansen-sprockets/sprockets/error-summary': './src/sprockets/error-summary/index.cjs',
@@ -94,6 +91,7 @@ module.exports = (api) => {
94
91
 
95
92
  return {
96
93
  presets,
97
- plugins
94
+ plugins,
95
+ ignore: [/node_modules\/(?!shinkansen-)/]
98
96
  }
99
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-sprockets",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "description": "Shinkansen Sprockets",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -15,7 +15,7 @@
15
15
  "author": "Jonathan Perry for Modern Poacher Limited <modernpoacher@modernpoacher.com>",
16
16
  "license": "MIT",
17
17
  "engines": {
18
- "node": ">=16.13.0"
18
+ "node": ">=18.5.0"
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
@@ -52,8 +52,8 @@
52
52
  "@babel/preset-env": "^7.21.5",
53
53
  "@babel/preset-react": "^7.18.6",
54
54
  "@babel/register": "^7.21.0",
55
- "@modernpoacher/design-system": "1.0.2",
56
- "@modernpoacher/hooks": "^1.0.392",
55
+ "@modernpoacher/design-system": "1.0.3",
56
+ "@modernpoacher/hooks": "^1.0.394",
57
57
  "@sequencemedia/gulp": "^1.0.6",
58
58
  "@storybook/addon-actions": "6.5.12",
59
59
  "@storybook/addon-essentials": "6.5.12",
@@ -67,7 +67,7 @@
67
67
  "del": "^7.0.0",
68
68
  "enzyme": "^3.11.0",
69
69
  "enzyme-adapter-react-16": "^1.15.7",
70
- "eslint": "^8.39.0",
70
+ "eslint": "^8.40.0",
71
71
  "eslint-config-standard": "^17.0.0",
72
72
  "eslint-import-resolver-babel-module": "^5.3.2",
73
73
  "eslint-plugin-import": "^2.27.5",
@@ -106,8 +106,7 @@
106
106
  "imports": {
107
107
  "#build/gulp/build/*": "./build/gulp/build/*.mjs",
108
108
  "#build/gulp/build": "./build/gulp/build/index.mjs",
109
- "#build/gulp/paths": "./build/gulp/paths.mjs",
110
- "#build/gulp/handle-watch-error": "./build/gulp/handle-watch-error.mjs",
109
+ "#build/gulp/*": "./build/gulp/*.mjs",
111
110
  "#build/gulp/transform": "./build/gulp/transform/index.mjs",
112
111
  "#build/paths": "./build/paths.mjs"
113
112
  },
package/src/index.cjs CHANGED
@@ -1,4 +1,4 @@
1
- require('@babel/register')
1
+ require('@babel/register')({ ignore: [] })
2
2
 
3
3
  const debug = require('debug')
4
4