@muonic/muon 0.0.2-experimental-139-b12e3fd.0 → 0.0.2-experimental-140-8b3b5e4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muonic/muon",
3
- "version": "0.0.2-experimental-139-b12e3fd.0",
3
+ "version": "0.0.2-experimental-140-8b3b5e4.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -32,7 +32,7 @@ const runElementJson = async () => {
32
32
  };
33
33
 
34
34
  const shouldSkip = (file) => {
35
- return file.indexOf('node_modules') > 0 || file.indexOf('virtual:') > 0;
35
+ return file.indexOf('virtual:') > 0;
36
36
  };
37
37
 
38
38
  const createElementJsonFile = async () => {
@@ -103,7 +103,8 @@ const createComponentElementsJson = async (files) => {
103
103
  const destination = config.destination || 'dist';
104
104
 
105
105
  const results = await analyzeAndTransformGlobs(files, {
106
- format: 'json'
106
+ format: 'json',
107
+ discoverNodeModules: true
107
108
  });
108
109
 
109
110
  const jsonResults = JSON.parse(results);