@bikdotai/bik-widgets 1.0.2 → 1.0.4
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.
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
Copyright (c) 2015 Jed Watson.
|
|
3
|
+
Based on code that is Copyright 2013-2015, Facebook, Inc.
|
|
4
|
+
All rights reserved.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*!
|
|
8
|
+
* Adapted from jQuery UI core
|
|
9
|
+
*
|
|
10
|
+
* http://jqueryui.com
|
|
11
|
+
*
|
|
12
|
+
* Copyright 2014 jQuery Foundation and other contributors
|
|
13
|
+
* Released under the MIT license.
|
|
14
|
+
* http://jquery.org/license
|
|
15
|
+
*
|
|
16
|
+
* http://api.jqueryui.com/category/ui-core/
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bikdotai/bik-widgets",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Follow below steps",
|
|
5
|
-
"main": "dist-package/index.
|
|
5
|
+
"main": "dist-package/index.cjs",
|
|
6
|
+
"module": "dist-package/index.mjs",
|
|
6
7
|
"exports": {
|
|
7
8
|
".": {
|
|
8
|
-
"
|
|
9
|
-
"
|
|
9
|
+
"import": "./dist-package/index.mjs",
|
|
10
|
+
"require": "./dist-package/index.cjs",
|
|
11
|
+
"default": "./dist-package/index.mjs"
|
|
10
12
|
},
|
|
11
13
|
"./styles.css": "./dist-package/index.css"
|
|
12
14
|
},
|
|
@@ -17,7 +19,7 @@
|
|
|
17
19
|
"scripts": {
|
|
18
20
|
"stats": "webpack --profile --json > stats.json",
|
|
19
21
|
"start": "webpack serve --mode=development --env stage=dev",
|
|
20
|
-
"build:package": "rm -rf dist-package && webpack --mode production --env stage=package infra=production",
|
|
22
|
+
"build:package": "rm -rf dist-package && webpack --mode production --env stage=package-cjs infra=production && webpack --mode production --env stage=package-esm infra=production",
|
|
21
23
|
"build": "npm run build:package",
|
|
22
24
|
"prepublishOnly": "npm run build:package",
|
|
23
25
|
"build-widgets": "rm -rf dist && webpack --mode production --env stage=widgets infra=staging",
|