tailwindcss 0.0.0-oxide-insiders.8e85a86 → 0.0.0-oxide-insiders.55aa403

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.
@@ -84,7 +84,7 @@ function* _getModuleDependencies(filename, base, seen, ext = _path.default.extna
84
84
  for (let match of [
85
85
  ...contents.matchAll(/import[\s\S]*?['"](.{3,}?)['"]/gi),
86
86
  ...contents.matchAll(/import[\s\S]*from[\s\S]*?['"](.{3,}?)['"]/gi),
87
- ...contents.matchAll(/require\(['"`](.{3,})['"`]\)/gi)
87
+ ...contents.matchAll(/require\(['"`](.+)['"`]\)/gi)
88
88
  ]){
89
89
  // Bail out if it's not a relative file
90
90
  if (!match[1].startsWith(".")) continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwindcss",
3
- "version": "0.0.0-oxide-insiders.8e85a86",
3
+ "version": "0.0.0-oxide-insiders.55aa403",
4
4
  "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
@@ -70,7 +70,7 @@
70
70
  "postcss": "^8.0.9"
71
71
  },
72
72
  "dependencies": {
73
- "@tailwindcss/oxide": "0.0.0-oxide-insiders.8e85a86",
73
+ "@tailwindcss/oxide": "0.0.0-oxide-insiders.55aa403",
74
74
  "arg": "^5.0.2",
75
75
  "browserslist": "^4.21.5",
76
76
  "chokidar": "^3.5.3",
@@ -62,7 +62,7 @@ function* _getModuleDependencies(filename, base, seen, ext = path.extname(filena
62
62
  for (let match of [
63
63
  ...contents.matchAll(/import[\s\S]*?['"](.{3,}?)['"]/gi),
64
64
  ...contents.matchAll(/import[\s\S]*from[\s\S]*?['"](.{3,}?)['"]/gi),
65
- ...contents.matchAll(/require\(['"`](.{3,})['"`]\)/gi),
65
+ ...contents.matchAll(/require\(['"`](.+)['"`]\)/gi),
66
66
  ]) {
67
67
  // Bail out if it's not a relative file
68
68
  if (!match[1].startsWith('.')) continue