@ossy/app 1.11.9 → 1.12.0

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/cli/build.js +3 -3
  2. package/package.json +10 -10
package/cli/build.js CHANGED
@@ -199,7 +199,7 @@ export function createOssyAppBundlePlugins ({ nodeEnv }) {
199
199
  babel({
200
200
  babelHelpers: 'bundled',
201
201
  extensions: ['.jsx', '.tsx'],
202
- presets: ['@babel/preset-react'],
202
+ presets: [['@babel/preset-react', { runtime: 'automatic' }]],
203
203
  }),
204
204
  ]
205
205
  }
@@ -226,7 +226,7 @@ export function createOssyClientRollupPlugins ({ nodeEnv, copyPublicFrom, buildP
226
226
  babel({
227
227
  babelHelpers: 'bundled',
228
228
  extensions: ['.jsx', '.tsx'],
229
- presets: ['@babel/preset-react'],
229
+ presets: [['@babel/preset-react', { runtime: 'automatic' }]],
230
230
  }),
231
231
  ]
232
232
  if (copyPublicFrom && fs.existsSync(copyPublicFrom)) {
@@ -261,7 +261,7 @@ export function createOssySsrBundlePlugins ({ nodeEnv }) {
261
261
  babel({
262
262
  babelHelpers: 'bundled',
263
263
  extensions: ['.jsx', '.tsx'],
264
- presets: ['@babel/preset-react'],
264
+ presets: [['@babel/preset-react', { runtime: 'automatic' }]],
265
265
  }),
266
266
  ]
267
267
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/app",
3
- "version": "1.11.9",
3
+ "version": "1.12.0",
4
4
  "description": "",
5
5
  "source": "./src/index.js",
6
6
  "main": "./src/index.js",
@@ -27,14 +27,14 @@
27
27
  "@babel/eslint-parser": "^7.15.8",
28
28
  "@babel/preset-react": "^7.26.3",
29
29
  "@babel/register": "^7.25.9",
30
- "@ossy/connected-components": "^1.11.9",
31
- "@ossy/design-system": "^1.11.9",
32
- "@ossy/pages": "^1.11.9",
33
- "@ossy/router": "^1.11.9",
34
- "@ossy/router-react": "^1.11.9",
35
- "@ossy/sdk": "^1.11.9",
36
- "@ossy/sdk-react": "^1.11.9",
37
- "@ossy/themes": "^1.11.9",
30
+ "@ossy/connected-components": "^1.12.0",
31
+ "@ossy/design-system": "^1.12.0",
32
+ "@ossy/pages": "^1.12.0",
33
+ "@ossy/router": "^1.12.0",
34
+ "@ossy/router-react": "^1.12.0",
35
+ "@ossy/sdk": "^1.12.0",
36
+ "@ossy/sdk-react": "^1.12.0",
37
+ "@ossy/themes": "^1.12.0",
38
38
  "@rollup/plugin-alias": "^6.0.0",
39
39
  "@rollup/plugin-babel": "6.1.0",
40
40
  "@rollup/plugin-commonjs": "^29.0.0",
@@ -67,5 +67,5 @@
67
67
  "README.md",
68
68
  "tsconfig.json"
69
69
  ],
70
- "gitHead": "6644afdbe9d5eb8ed1f79657d14b1268ad283bcb"
70
+ "gitHead": "077c0eabe8ef6b8e69e1c3cc03276209fafa76c7"
71
71
  }