@papillonarts/setup 0.1.0 → 0.2.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.
- package/babel/index.js +1 -1
- package/package.json +2 -2
- package/storybook/setup/mainSetup.js +2 -0
package/babel/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
module.exports = {
|
|
4
|
-
presets: ['@babel/preset-env', '@babel/preset-react'],
|
|
4
|
+
presets: ['@babel/preset-env', '@babel/preset-react', '@babel/preset-typescript'],
|
|
5
5
|
plugins: ['@babel/plugin-proposal-class-properties', '@babel/plugin-proposal-nullish-coalescing-operator', '@babel/plugin-proposal-object-rest-spread', '@babel/plugin-proposal-optional-catch-binding', '@babel/plugin-proposal-optional-chaining', '@babel/plugin-syntax-dynamic-import', '@babel/plugin-transform-classes', ['@babel/plugin-transform-react-jsx', {
|
|
6
6
|
runtime: 'automatic'
|
|
7
7
|
}], '@babel/plugin-transform-runtime', '@babel/plugin-transform-spread', 'syntax-async-functions']
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@papillonarts/setup",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Papillon Arts Setup",
|
|
5
5
|
"homepage": "https://github.com/papillonarts/papillonarts/tree/master/packages/setup",
|
|
6
6
|
"repository": {
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"build-acceptance": "npm run build",
|
|
30
30
|
"build-release": "npm run build"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "f602ad42528a6f9b5cc25a02e8d7196a1b3316be"
|
|
33
33
|
}
|
|
@@ -11,6 +11,8 @@ var _object = require("@papillonarts/library/object");
|
|
|
11
11
|
/* eslint-disable no-unused-vars */
|
|
12
12
|
/* eslint-disable no-param-reassign */
|
|
13
13
|
/* eslint-disable global-require */
|
|
14
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
15
|
+
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
14
16
|
|
|
15
17
|
function getStorybookMainSetup(_ref) {
|
|
16
18
|
var _webpackFinal;
|