@stencil/angular-output-target 0.0.1-dev.11730913953.1fecd221 → 0.0.1-dev.11730928290.1699ee88
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/generate-value-accessors.js +2 -1
- package/dist/index.cjs.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +2 -2
|
@@ -43,9 +43,10 @@ function copyResources(config, resourcesFilesToCopy, directory) {
|
|
|
43
43
|
throw new Error('stencil is not properly initialized at this step. Notify the developer');
|
|
44
44
|
}
|
|
45
45
|
const copyTasks = resourcesFilesToCopy.map((rf) => {
|
|
46
|
+
const dest = path.resolve(directory, rf);
|
|
46
47
|
return {
|
|
47
48
|
src: path.join(__dirname, '../resources/control-value-accessors/', rf),
|
|
48
|
-
dest: path.
|
|
49
|
+
dest: path.extname(dest) ? path.dirname(dest) : dest,
|
|
49
50
|
keepDirStructure: false,
|
|
50
51
|
warn: false,
|
|
51
52
|
ignore: [],
|
package/dist/index.cjs.js
CHANGED
|
@@ -385,9 +385,10 @@ function copyResources$1(config, resourcesFilesToCopy, directory) {
|
|
|
385
385
|
throw new Error('stencil is not properly initialized at this step. Notify the developer');
|
|
386
386
|
}
|
|
387
387
|
const copyTasks = resourcesFilesToCopy.map((rf) => {
|
|
388
|
+
const dest = path__default["default"].resolve(directory, rf);
|
|
388
389
|
return {
|
|
389
390
|
src: path__default["default"].join(__dirname, '../resources/control-value-accessors/', rf),
|
|
390
|
-
dest: path__default["default"].
|
|
391
|
+
dest: path__default["default"].extname(dest) ? path__default["default"].dirname(dest) : dest,
|
|
391
392
|
keepDirStructure: false,
|
|
392
393
|
warn: false,
|
|
393
394
|
ignore: [],
|
package/dist/index.js
CHANGED
|
@@ -377,9 +377,10 @@ function copyResources$1(config, resourcesFilesToCopy, directory) {
|
|
|
377
377
|
throw new Error('stencil is not properly initialized at this step. Notify the developer');
|
|
378
378
|
}
|
|
379
379
|
const copyTasks = resourcesFilesToCopy.map((rf) => {
|
|
380
|
+
const dest = path.resolve(directory, rf);
|
|
380
381
|
return {
|
|
381
382
|
src: path.join(__dirname, '../resources/control-value-accessors/', rf),
|
|
382
|
-
dest: path.
|
|
383
|
+
dest: path.extname(dest) ? path.dirname(dest) : dest,
|
|
383
384
|
keepDirStructure: false,
|
|
384
385
|
warn: false,
|
|
385
386
|
ignore: [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stencil/angular-output-target",
|
|
3
|
-
"version": "0.0.1-dev.
|
|
3
|
+
"version": "0.0.1-dev.11730928290.1699ee88",
|
|
4
4
|
"description": "Angular output target for @stencil/core components.",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
],
|
|
69
69
|
"testURL": "http://localhost"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "699ee88cb3dc0726b12a985c49a3875b9eb7745a"
|
|
72
72
|
}
|