web-component-wrapper 0.0.598 → 0.0.599
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/dist/bundle/compatible/ReactWeb.js +42 -0
- package/dist/bundle/compatible/Web.js +3 -0
- package/dist/bundle/compatible/decorator.js +3 -0
- package/dist/bundle/compatible/index.js +42 -0
- package/dist/bundle/compatible/test.js +42 -0
- package/dist/bundle/compatible/type.js +1 -0
- package/dist/compatible/ReactWeb.js +1 -42
- package/dist/compatible/Web.js +1 -3
- package/dist/compatible/decorator.js +1 -3
- package/dist/compatible/index.js +1 -42
- package/dist/compatible/test.js +1 -42
- package/dist/compatible/type.js +1 -1
- package/package.json +11 -5
package/dist/compatible/type.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";if("undefined"!=typeof module&&null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&"undefined"!=typeof __dirname&&null!==__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window="undefined"==typeof global||null===global?{}:global;!function(e,n){"object"==typeof exports&&"object"==typeof module
|
|
1
|
+
"use strict";if("undefined"!=typeof module&&null!==module&&"undefined"!==eval("typeof require")&&null!==eval("require")&&"main"in eval("require")&&"undefined"!==eval("typeof require.main")&&null!==eval("require.main")){var ORIGINAL_MAIN_MODULE=module;module!==eval("require.main")&&"paths"in module&&"paths"in eval("require.main")&&"undefined"!=typeof __dirname&&null!==__dirname&&(module.paths=eval("require.main.paths").concat(module.paths.filter((function(path){return eval("require.main.paths").includes(path)}))))}if(null==window)var window="undefined"==typeof global||null===global?{}:global;!function(e,n){if("object"==typeof exports&&"object"==typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define([],n);else{var i=n();for(var l in i)("object"==typeof exports?exports:e)[l]=i[l]}}(this,(function(){return{r:function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}}.r(e={}),e;var e}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-component-wrapper",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.599",
|
|
4
4
|
"description": "Generic web-component base class and framework specific wrapper.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"component",
|
|
@@ -32,10 +32,9 @@
|
|
|
32
32
|
"url": "https://github.com/thaibault/web-component-wrapper"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
|
-
"build": "yarn build:types; yarn build:plain; yarn build:compatible; yarn build:bundle",
|
|
36
|
-
"build:bundle": "
|
|
37
|
-
"build:bundle:
|
|
38
|
-
"build:bundle:compatible": "weboptimizer build '{__reference__: [\"target:bundle\", \"target:compatible\"]}'",
|
|
35
|
+
"build": "yarn build:types; yarn build:plain; yarn build:compatible; yarn build:bundle; yarn build:bundle:compatible",
|
|
36
|
+
"build:bundle": "weboptimizer build '{__reference__: \"target:bundle\"}'",
|
|
37
|
+
"build:bundle:compatible": "weboptimizer build '{__reference__: [\"target:bundle\", \"target:compatible\", \"target:bundle:compatible\"]}'",
|
|
39
38
|
"build:plain": "weboptimizer build",
|
|
40
39
|
"build:compatible": "weboptimizer build '{__reference__: \"target:compatible\"}'",
|
|
41
40
|
"build:types": "weboptimizer build:types",
|
|
@@ -200,6 +199,13 @@
|
|
|
200
199
|
"base": "dist/compatible/"
|
|
201
200
|
}
|
|
202
201
|
}
|
|
202
|
+
},
|
|
203
|
+
"target:bundle:compatible": {
|
|
204
|
+
"path": {
|
|
205
|
+
"target": {
|
|
206
|
+
"base": "dist/bundle/compatible/"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
203
209
|
}
|
|
204
210
|
},
|
|
205
211
|
"packageManager": "yarn@4.14.1+sha512.64df448055b2d37ba269d7db535a469b8da93f8ef1140c25fd7a83c00a8fbaacb214ca0e02553b92a2c54cef78bb67d0b4817fab02001df0e24fac0faccc3b42"
|