diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2021-03-24 23:36:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-24 23:36:25 +0100 |
commit | a684e6ba836f7c553968d7d026ed7941e1a612d8 (patch) | |
tree | 7da4baf17e709153ac00623b170f11842fe670c8 /test/karma.debug.html | |
parent | b2bbaa36d4d37bd48f954ed3cdbd50d3461a523d (diff) | |
download | jquery-a684e6ba836f7c553968d7d026ed7941e1a612d8.tar.gz jquery-a684e6ba836f7c553968d7d026ed7941e1a612d8.zip |
Build: Restore the external directory
In gh-4466, we removed the `external` directory in favor of loading some files
directly from `node_modules`. This works fine locally but when deploying code
for tests, this makes it impossible to not deploy `node_modules` as well. To
avoid the issue, this change restores usage of the `external` directory.
One change is that we no longer commit this directory to the repository, its
only purpose is to have clear isolation from `node_modules`.
Ref gh-4466
Closess gh-4865
Diffstat (limited to 'test/karma.debug.html')
-rw-r--r-- | test/karma.debug.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/karma.debug.html b/test/karma.debug.html index 8040ef2cd..9eb6c9885 100644 --- a/test/karma.debug.html +++ b/test/karma.debug.html @@ -5,7 +5,7 @@ <title>DEBUG</title> <meta charset="utf-8"> <!-- Karma serves this page from /context.html. Other files are served from /base --> - <link rel="stylesheet" href="/base/node_modules/qunit/qunit/qunit.css" /> + <link rel="stylesheet" href="/base/external/qunit/qunit/qunit.css" /> <link rel="stylesheet" href="/base/test/data/testsuite.css" /> </head> <body id="body"> |