diff --git a/.changeset/changelog-generator.mjs b/.changeset/changelog-generator.js similarity index 100% rename from .changeset/changelog-generator.mjs rename to .changeset/changelog-generator.js diff --git a/.changeset/config.json b/.changeset/config.json index 5931d357..fdeab626 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,6 +1,6 @@ { "$schema": "https://unpkg.com/@changesets/config@3.1.2/schema.json", - "changelog": ["./changelog-generator.mjs", { "repo": "webpack/sass-loader" }], + "changelog": ["./changelog-generator.js", { "repo": "webpack/sass-loader" }], "fixed": [], "linked": [], "access": "public", diff --git a/.changeset/esm-conversion.md b/.changeset/esm-conversion.md new file mode 100644 index 00000000..6068f6a2 --- /dev/null +++ b/.changeset/esm-conversion.md @@ -0,0 +1,8 @@ +--- +"sass-loader": major +--- + +Convert source to native ECMAScript modules. The package now declares +`"type": "module"` and exposes both an ESM and a CommonJS build via the +`exports` field. CommonJS consumers continue to work via `require`, and +ESM consumers can now `import` the loader directly. diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 00000000..5eb6a3c5 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,30 @@ +const MIN_BABEL_VERSION = 7; + +export default (api) => { + api.assertVersion(MIN_BABEL_VERSION); + + const env = api.env(); + const isCjs = env === "cjs"; + + return { + presets: [ + [ + "@babel/preset-env", + { + targets: { node: "22.11.0" }, + modules: false, + }, + ], + ], + plugins: isCjs + ? [ + [ + "@babel/plugin-transform-modules-commonjs", + { + ignoreDynamicImport: true, + }, + ], + ] + : [], + }; +}; diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 00000000..6bf3643f --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,8 @@ +import { defineConfig } from "eslint/config"; +import configs from "eslint-config-webpack/configs.js"; + +export default defineConfig([ + { + extends: [configs["node-recommended"]], + }, +]); diff --git a/eslint.config.mjs b/eslint.config.mjs deleted file mode 100644 index 151684a9..00000000 --- a/eslint.config.mjs +++ /dev/null @@ -1,15 +0,0 @@ -import { defineConfig } from "eslint/config"; -import configs from "eslint-config-webpack/configs.js"; - -export default defineConfig([ - { - extends: [configs["node-recommended-commonjs"]], - }, - { - files: ["test/**/*"], - extends: [configs["node-recommended-module"]], - rules: { - "n/no-unsupported-features/node-builtins": "off", - }, - }, -]); diff --git a/lint-staged.config.js b/lint-staged.config.js index 2d40a32b..50d30973 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,6 +1,4 @@ -"use strict"; - -module.exports = { +export default { "*": [ "prettier --cache --write --ignore-unknown", "cspell --cache --no-must-find-files", diff --git a/package-lock.json b/package-lock.json index 5910e8c2..f805cb41 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,9 @@ "version": "16.0.8", "license": "MIT", "devDependencies": { + "@babel/cli": "^7.28.6", + "@babel/core": "^7.28.6", + "@babel/preset-env": "^7.28.6", "@changesets/cli": "^2.30.0", "@changesets/get-github-info": "^0.8.0", "bootstrap-sass": "^3.4.1", @@ -20,7 +23,7 @@ "del-cli": "^5.1.0", "enhanced-resolve": "^5.21.1", "eslint": "^9.38.0", - "eslint-config-webpack": "^4.9.5", + "eslint-config-webpack": "^4.9.6", "file-loader": "^6.2.0", "foundation-sites": "^6.7.5", "husky": "^9.1.3", @@ -63,6 +66,36 @@ } } }, + "node_modules/@babel/cli": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.28.6.tgz", + "integrity": "sha512-6EUNcuBbNkj08Oj4gAZ+BUU8yLCgKzgVX4gaTh09Ya2C8ICM4P+G30g4m3akRxSYAp3A/gnWchrNst7px4/nUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.28", + "commander": "^6.2.0", + "convert-source-map": "^2.0.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + }, + "bin": { + "babel": "bin/babel.js", + "babel-external-helpers": "bin/babel-external-helpers.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "optionalDependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.6.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/code-frame": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", @@ -146,6 +179,19 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-compilation-targets": { "version": "7.28.6", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", @@ -173,6 +219,83 @@ "semver": "bin/semver.js" } }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.3.tgz", + "integrity": "sha512-RpLYy2sb51oNLjuu1iD3bwBqCBWUzjO0ocp+iaCP/lJtb2CPLcnC2Fftw+4sAzaMELGeWTgExSKADbdo0GFVzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/traverse": "^7.29.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz", + "integrity": "sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "regexpu-core": "^6.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz", + "integrity": "sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "debug": "^4.4.3", + "lodash.debounce": "^4.0.8", + "resolve": "^1.22.11" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, "node_modules/@babel/helper-globals": { "version": "7.28.0", "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", @@ -183,6 +306,20 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz", + "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-module-imports": { "version": "7.28.6", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", @@ -215,6 +352,79 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz", + "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.27.1.tgz", + "integrity": "sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.1", + "@babel/helper-wrap-function": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz", + "integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.28.5", + "@babel/helper-optimise-call-expression": "^7.27.1", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz", + "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-string-parser": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", @@ -245,6 +455,21 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz", + "integrity": "sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.28.6", + "@babel/traverse": "^7.28.6", + "@babel/types": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helpers": { "version": "7.29.2", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", @@ -259,20 +484,1150 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/parser": { - "version": "7.29.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz", - "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==", + "node_modules/@babel/parser": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz", + "integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.28.5.tgz", + "integrity": "sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.27.1.tgz", + "integrity": "sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.27.1.tgz", + "integrity": "sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": { + "version": "7.29.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array/-/plugin-bugfix-safari-rest-destructuring-rhs-array-7.29.3.tgz", + "integrity": "sha512-SRS46DFR4HqzUzCVgi90/xMoL+zeBDBvWdKYXSEzh79kXswNFEglUpMKxR04//dPqwYXWUBJ3mpUd933ru9Kmg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.27.1.tgz", + "integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz", + "integrity": "sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz", + "integrity": "sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", + "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.27.1.tgz", + "integrity": "sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.29.0.tgz", + "integrity": "sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.28.6.tgz", + "integrity": "sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-remap-async-to-generator": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.27.1.tgz", + "integrity": "sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz", + "integrity": "sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz", + "integrity": "sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz", + "integrity": "sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz", + "integrity": "sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-globals": "^7.28.0", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-replace-supers": "^7.28.6", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz", + "integrity": "sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/template": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz", + "integrity": "sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz", + "integrity": "sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.27.1.tgz", + "integrity": "sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.0.tgz", + "integrity": "sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.27.1.tgz", + "integrity": "sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz", + "integrity": "sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz", + "integrity": "sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.27.1.tgz", + "integrity": "sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.27.1.tgz", + "integrity": "sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.27.1.tgz", + "integrity": "sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/traverse": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz", + "integrity": "sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.27.1.tgz", + "integrity": "sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz", + "integrity": "sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.27.1.tgz", + "integrity": "sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.27.1.tgz", + "integrity": "sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz", + "integrity": "sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.29.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.4.tgz", + "integrity": "sha512-N7QmZ0xRZfjHOfZeQLJjwgX2zS9pdGHSVl/cjSGlo4dXMqvurfxXDMKY4RqEKzPozV78VMcd0lxyG13mlbKc4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-identifier": "^7.28.5", + "@babel/traverse": "^7.29.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.27.1.tgz", + "integrity": "sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.0.tgz", + "integrity": "sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.27.1.tgz", + "integrity": "sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz", + "integrity": "sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz", + "integrity": "sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz", + "integrity": "sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/traverse": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.27.1.tgz", + "integrity": "sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-replace-supers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz", + "integrity": "sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz", + "integrity": "sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.27.7.tgz", + "integrity": "sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz", + "integrity": "sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz", + "integrity": "sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.27.3", + "@babel/helper-create-class-features-plugin": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.27.1.tgz", + "integrity": "sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.0.tgz", + "integrity": "sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz", + "integrity": "sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.27.1.tgz", + "integrity": "sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.27.1.tgz", + "integrity": "sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz", + "integrity": "sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.27.1.tgz", + "integrity": "sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.27.1.tgz", + "integrity": "sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.1.tgz", + "integrity": "sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.27.1.tgz", + "integrity": "sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz", + "integrity": "sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.27.1.tgz", + "integrity": "sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz", + "integrity": "sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.28.5", + "@babel/helper-plugin-utils": "^7.28.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.29.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.29.5.tgz", + "integrity": "sha512-/69t2aEzGKHD76DyLbHysF/QH2LJOB8iFnYO37unDTKBTubzcMRv0f3H5EiN1Q6ajOd/eB7dAInF0qdFVS06kA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.29.3", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": "^7.29.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.6", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.28.6", + "@babel/plugin-syntax-import-attributes": "^7.28.6", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.29.0", + "@babel/plugin-transform-async-to-generator": "^7.28.6", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.6", + "@babel/plugin-transform-class-properties": "^7.28.6", + "@babel/plugin-transform-class-static-block": "^7.28.6", + "@babel/plugin-transform-classes": "^7.28.6", + "@babel/plugin-transform-computed-properties": "^7.28.6", + "@babel/plugin-transform-destructuring": "^7.28.5", + "@babel/plugin-transform-dotall-regex": "^7.28.6", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.6", + "@babel/plugin-transform-exponentiation-operator": "^7.28.6", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.28.6", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.28.6", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.28.6", + "@babel/plugin-transform-modules-systemjs": "^7.29.4", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.29.0", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.28.6", + "@babel/plugin-transform-numeric-separator": "^7.28.6", + "@babel/plugin-transform-object-rest-spread": "^7.28.6", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.28.6", + "@babel/plugin-transform-optional-chaining": "^7.28.6", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.28.6", + "@babel/plugin-transform-private-property-in-object": "^7.28.6", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.29.0", + "@babel/plugin-transform-regexp-modifiers": "^7.28.6", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.28.6", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.28.6", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.28.6", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.15", + "babel-plugin-polyfill-corejs3": "^0.14.0", + "babel-plugin-polyfill-regenerator": "^0.6.6", + "core-js-compat": "^3.48.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.29.0" - }, - "bin": { - "parser": "bin/babel-parser.js" + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" }, - "engines": { - "node": ">=6.0.0" + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/runtime": { @@ -2505,6 +3860,14 @@ "@material/theme": "^9.0.0" } }, + "node_modules/@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", + "dev": true, + "license": "MIT", + "optional": true + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -3064,17 +4427,17 @@ "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.2.tgz", - "integrity": "sha512-j/bwmkBvHUtPNxzuWe5z6BEk3q54YRyGlBXkSsmfoih7zNrBvl5A9A98anlp/7JbyZcWIJ8KXo/3Tq/DjFLtuQ==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz", + "integrity": "sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.59.2", - "@typescript-eslint/type-utils": "8.59.2", - "@typescript-eslint/utils": "8.59.2", - "@typescript-eslint/visitor-keys": "8.59.2", + "@typescript-eslint/scope-manager": "8.59.3", + "@typescript-eslint/type-utils": "8.59.3", + "@typescript-eslint/utils": "8.59.3", + "@typescript-eslint/visitor-keys": "8.59.3", "ignore": "^7.0.5", "natural-compare": "^1.4.0", "ts-api-utils": "^2.5.0" @@ -3087,7 +4450,7 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.59.2", + "@typescript-eslint/parser": "^8.59.3", "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.1.0" } @@ -3103,16 +4466,16 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.2.tgz", - "integrity": "sha512-plR3pp6D+SSUn1HM7xvSkx12/DhoHInI2YF35KAcVFNZvlC0gtrWqx7Qq1oH2Ssgi0vlFRCTbP+DZc7B9+TtsQ==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.3.tgz", + "integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "8.59.2", - "@typescript-eslint/types": "8.59.2", - "@typescript-eslint/typescript-estree": "8.59.2", - "@typescript-eslint/visitor-keys": "8.59.2", + "@typescript-eslint/scope-manager": "8.59.3", + "@typescript-eslint/types": "8.59.3", + "@typescript-eslint/typescript-estree": "8.59.3", + "@typescript-eslint/visitor-keys": "8.59.3", "debug": "^4.4.3" }, "engines": { @@ -3128,14 +4491,14 @@ } }, "node_modules/@typescript-eslint/project-service": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.2.tgz", - "integrity": "sha512-+2hqvEkeyf/0FBor67duF0Ll7Ot8jyKzDQOSrxazF/danillRq2DwR9dLptsXpoZQqxE1UisSmoZewrlPas9Vw==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.3.tgz", + "integrity": "sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.59.2", - "@typescript-eslint/types": "^8.59.2", + "@typescript-eslint/tsconfig-utils": "^8.59.3", + "@typescript-eslint/types": "^8.59.3", "debug": "^4.4.3" }, "engines": { @@ -3150,14 +4513,14 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.2.tgz", - "integrity": "sha512-JzfyEpEtOU89CcFSwyNS3mu4MLvLSXqnmX05+aKBDM+TdR5jzcGOEBwxwGNxrEQ7p/z6kK2WyioCGBf2zZBnvg==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz", + "integrity": "sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.59.2", - "@typescript-eslint/visitor-keys": "8.59.2" + "@typescript-eslint/types": "8.59.3", + "@typescript-eslint/visitor-keys": "8.59.3" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3168,9 +4531,9 @@ } }, "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.2.tgz", - "integrity": "sha512-BKK4alN7oi4C/zv4VqHQ+uRU+lTa6JGIZ7s1juw7b3RHo9OfKB+bKX3u0iVZetdsUCBBkSbdWbarJbmN0fTeSw==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz", + "integrity": "sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==", "dev": true, "license": "MIT", "engines": { @@ -3185,15 +4548,15 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.2.tgz", - "integrity": "sha512-nhqaj1nmTdVVl/BP5omXNRGO38jn5iosis2vbdmupF2txCf8ylWT8lx+JlvMYYVqzGVKtjojUFoQ3JRWK+mfzQ==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz", + "integrity": "sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.59.2", - "@typescript-eslint/typescript-estree": "8.59.2", - "@typescript-eslint/utils": "8.59.2", + "@typescript-eslint/types": "8.59.3", + "@typescript-eslint/typescript-estree": "8.59.3", + "@typescript-eslint/utils": "8.59.3", "debug": "^4.4.3", "ts-api-utils": "^2.5.0" }, @@ -3210,9 +4573,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.2.tgz", - "integrity": "sha512-e82GVOE8Ps3E++Egvb6Y3Dw0S10u8NkQ9KXmtRhCWJJ8kDhOJTvtMAWnFL16kB1583goCWXsr0NieKCZMs2/0Q==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.3.tgz", + "integrity": "sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==", "dev": true, "license": "MIT", "engines": { @@ -3224,16 +4587,16 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.2.tgz", - "integrity": "sha512-o0XPGNwcWw+FIwStOWn+BwBuEmL6QXP0rsvAFg7ET1dey1Nr6Wb1ac8p5HEsK0ygO/6mUxlk+YWQD9xcb/nnXg==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz", + "integrity": "sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/project-service": "8.59.2", - "@typescript-eslint/tsconfig-utils": "8.59.2", - "@typescript-eslint/types": "8.59.2", - "@typescript-eslint/visitor-keys": "8.59.2", + "@typescript-eslint/project-service": "8.59.3", + "@typescript-eslint/tsconfig-utils": "8.59.3", + "@typescript-eslint/types": "8.59.3", + "@typescript-eslint/visitor-keys": "8.59.3", "debug": "^4.4.3", "minimatch": "^10.2.2", "semver": "^7.7.3", @@ -3291,16 +4654,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.2.tgz", - "integrity": "sha512-Juw3EinkXqjaffxz6roowvV7GZT/kET5vSKKZT6upl5TXdWkLkYmNPXwDDL2Vkt2DPn0nODIS4egC/0AGxKo/Q==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.3.tgz", + "integrity": "sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.59.2", - "@typescript-eslint/types": "8.59.2", - "@typescript-eslint/typescript-estree": "8.59.2" + "@typescript-eslint/scope-manager": "8.59.3", + "@typescript-eslint/types": "8.59.3", + "@typescript-eslint/typescript-estree": "8.59.3" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -3315,13 +4678,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.2.tgz", - "integrity": "sha512-NwjLUnGy8/Zfx23fl50tRC8rYaYnM52xNRYFAXvmiil9yh1+K6aRVQMnzW6gQB/1DLgWt977lYQn7C+wtgXZiA==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz", + "integrity": "sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.59.2", + "@typescript-eslint/types": "8.59.3", "eslint-visitor-keys": "^5.0.0" }, "engines": { @@ -3651,6 +5014,21 @@ "node": ">=4" } }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "optional": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/are-docs-informative": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", @@ -3881,6 +5259,58 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", + "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-define-polyfill-provider": "^0.6.8", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.14.2.tgz", + "integrity": "sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8", + "core-js-compat": "^3.48.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz", + "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -3921,6 +5351,20 @@ "node": "*" } }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/bootstrap-sass": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-3.4.3.tgz", @@ -4195,6 +5639,32 @@ "dev": true, "license": "MIT" }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, "node_modules/chrome-trace-event": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", @@ -4335,6 +5805,16 @@ "dev": true, "license": "MIT" }, + "node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, "node_modules/comment-json": { "version": "4.2.5", "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.5.tgz", @@ -5825,9 +7305,9 @@ } }, "node_modules/eslint-config-webpack": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/eslint-config-webpack/-/eslint-config-webpack-4.9.5.tgz", - "integrity": "sha512-A4FtsxyBZfLF69zX0+18EolUMNSkua3vKAz9GV0XovQIbK/TqE8qenXziq+sMvzIWFwTJXhhtd5gFTUjccuZmQ==", + "version": "4.9.6", + "resolved": "https://registry.npmjs.org/eslint-config-webpack/-/eslint-config-webpack-4.9.6.tgz", + "integrity": "sha512-4g1VqqOVgPrO/2bh17qNRKsQK26Aw1WF9mVTnvF+rNTDIUUTx+IaukXqXlumzwApQ1GfJlOsdLvT6WER1SPePg==", "dev": true, "license": "MIT", "dependencies": { @@ -5837,18 +7317,18 @@ "detect-indent": "^7.0.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", - "eslint-plugin-jest": "^29.15.1", + "eslint-plugin-jest": "^29.15.2", "eslint-plugin-jsdoc": "^62.9.0", - "eslint-plugin-n": "^17.24.0", + "eslint-plugin-n": "^18.0.1", "eslint-plugin-prettier": "^5.5.5", "eslint-plugin-react": "^7.37.5", - "eslint-plugin-react-hooks": "^7.0.1", + "eslint-plugin-react-hooks": "^7.1.1", "eslint-plugin-unicorn": "^64.0.0", - "globals": "^17.4.0", + "globals": "^17.6.0", "jsonc-eslint-parser": "^3.1.0", - "semver": "^7.7.4", + "semver": "^7.8.0", "sort-package-json": "^3.6.0", - "typescript-eslint": "^8.58.0" + "typescript-eslint": "^8.59.3" }, "engines": { "node": ">= 20.9.0" @@ -6171,9 +7651,9 @@ } }, "node_modules/eslint-plugin-n": { - "version": "17.24.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-17.24.0.tgz", - "integrity": "sha512-/gC7/KAYmfNnPNOb3eu8vw+TdVnV0zhdQwexsw6FLXbhzroVj20vRn2qL8lDWDGnAQ2J8DhdfvXxX9EoxvERvw==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-18.0.1.tgz", + "integrity": "sha512-q3ARhk+eZRc7myR0KHx+R3/GJeOHF+Ir6PK95Pu2tEX8Sl/4BIpmmVLva2kPrjC2gCmn6WHlHm+3yeo6Rxhycw==", "dev": true, "license": "MIT", "dependencies": { @@ -6184,17 +7664,26 @@ "globals": "^15.11.0", "globrex": "^0.1.2", "ignore": "^5.3.2", - "semver": "^7.6.3", - "ts-declaration-location": "^1.0.6" + "semver": "^7.6.3" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": "^20.19.0 || ^22.13.0 || >=24" }, "funding": { "url": "https://opencollective.com/eslint" }, "peerDependencies": { - "eslint": ">=8.23.0" + "eslint": ">=8.57.1", + "ts-declaration-location": "^1.0.6", + "typescript": ">=5.0.0" + }, + "peerDependenciesMeta": { + "ts-declaration-location": { + "optional": true + }, + "typescript": { + "optional": true + } } }, "node_modules/eslint-plugin-n/node_modules/globals": { @@ -6894,6 +8383,13 @@ "node": ">=6 <7 || >=8" } }, + "node_modules/fs-readdir-recursive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", + "dev": true, + "license": "MIT" + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -6901,6 +8397,21 @@ "dev": true, "license": "ISC" }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -7622,6 +9133,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/is-boolean-object": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", @@ -8579,6 +10104,13 @@ "node": ">=8.9.0" } }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true, + "license": "MIT" + }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", @@ -8738,6 +10270,30 @@ "yallist": "^3.0.2" } }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, "node_modules/map-obj": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", @@ -10509,6 +12065,17 @@ "semver": "bin/semver" } }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/npm-run-all": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", @@ -11396,6 +12963,20 @@ "node": ">=4" } }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, "node_modules/reflect.getprototypeof": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", @@ -11419,6 +13000,26 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true, + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/regexp-tree": { "version": "0.1.27", "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", @@ -11450,6 +13051,31 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/regexpu-core": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.2.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "dev": true, + "license": "MIT" + }, "node_modules/regjsparser": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.1.tgz", @@ -12156,9 +13782,9 @@ "license": "MIT" }, "node_modules/semver": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", - "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz", + "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==", "dev": true, "license": "ISC", "bin": { @@ -12329,6 +13955,16 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/slice-ansi": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", @@ -13057,42 +14693,6 @@ "typescript": ">=4.8.4" } }, - "node_modules/ts-declaration-location": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/ts-declaration-location/-/ts-declaration-location-1.0.7.tgz", - "integrity": "sha512-EDyGAwH1gO0Ausm9gV6T2nUvBgXT5kGoCMJPllOaooZ+4VvJiKBdZE7wK18N1deEowhcUptS+5GXZK8U/fvpwA==", - "dev": true, - "funding": [ - { - "type": "ko-fi", - "url": "https://ko-fi.com/rebeccastevens" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/ts-declaration-location" - } - ], - "license": "BSD-3-Clause", - "dependencies": { - "picomatch": "^4.0.2" - }, - "peerDependencies": { - "typescript": ">=4.0.0" - } - }, - "node_modules/ts-declaration-location/node_modules/picomatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", - "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", @@ -13242,16 +14842,16 @@ } }, "node_modules/typescript-eslint": { - "version": "8.59.2", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.2.tgz", - "integrity": "sha512-pJw051uomb3ZeCzGTpRb8RbEqB5Y4WWet8gl/GcTlU35BSx0PVdZ86/bqkQCyKKuraVQEK7r6kBHQXF+fBhkoQ==", + "version": "8.59.3", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.3.tgz", + "integrity": "sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/eslint-plugin": "8.59.2", - "@typescript-eslint/parser": "8.59.2", - "@typescript-eslint/typescript-estree": "8.59.2", - "@typescript-eslint/utils": "8.59.2" + "@typescript-eslint/eslint-plugin": "8.59.3", + "@typescript-eslint/parser": "8.59.3", + "@typescript-eslint/typescript-estree": "8.59.3", + "@typescript-eslint/utils": "8.59.3" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -13291,6 +14891,50 @@ "dev": true, "license": "MIT" }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/unist-util-is": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz", diff --git a/package.json b/package.json index c884d780..e5eca390 100644 --- a/package.json +++ b/package.json @@ -17,14 +17,26 @@ }, "license": "MIT", "author": "J. Tangelder", - "main": "dist/cjs.js", + "type": "module", + "exports": { + ".": { + "import": "./dist/esm/index.js", + "require": "./dist/cjs/index.js", + "default": "./dist/esm/index.js" + }, + "./package.json": "./package.json" + }, + "main": "./dist/cjs/index.js", + "module": "./dist/esm/index.js", "files": [ "dist" ], "scripts": { "clean": "del-cli dist", "prebuild": "npm run clean", - "build": "node -e \"require('node:fs').cpSync('src', 'dist', { recursive: true })\"", + "build:esm": "babel src -d dist/esm --env-name esm --copy-files --no-copy-ignored", + "build:cjs": "babel src -d dist/cjs --env-name cjs --copy-files --no-copy-ignored && node -e \"const fs=require('fs');fs.writeFileSync('dist/cjs/package.json','{\\\"type\\\":\\\"commonjs\\\"}\\n');fs.appendFileSync('dist/cjs/index.js','module.exports = exports.default;\\nmodule.exports.default = exports.default;\\n')\"", + "build": "npm-run-all -p \"build:*\"", "security": "npm audit --production", "lint": "npm-run-all -l -p \"lint:**\" && npm run fmt:check", "lint:code": "eslint --cache .", @@ -35,7 +47,7 @@ "fix:code": "npm run lint:code -- --fix", "pretest": "npm run lint", "test": "npm run test:base", - "test:base": "node --import ./test/setup-snapshots.mjs --test --test-force-exit --test-reporter=dot --test-reporter-destination=stdout --experimental-test-module-mocks", + "test:base": "node --import ./test/setup-snapshots.js --test --test-force-exit --test-reporter=dot --test-reporter-destination=stdout --experimental-test-module-mocks", "test:coverage": "npm run test:base -- --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage.lcov --test-coverage-include=\"src/**/*.js\"", "prepare": "husky && npm run build", "version": "changeset version", @@ -43,6 +55,9 @@ }, "dependencies": {}, "devDependencies": { + "@babel/cli": "^7.28.6", + "@babel/core": "^7.28.6", + "@babel/preset-env": "^7.28.6", "@changesets/cli": "^2.30.0", "@changesets/get-github-info": "^0.8.0", "bootstrap-sass": "^3.4.1", @@ -54,7 +69,7 @@ "del-cli": "^5.1.0", "enhanced-resolve": "^5.21.1", "eslint": "^9.38.0", - "eslint-config-webpack": "^4.9.5", + "eslint-config-webpack": "^4.9.6", "file-loader": "^6.2.0", "foundation-sites": "^6.7.5", "husky": "^9.1.3", diff --git a/src/cjs.js b/src/cjs.js deleted file mode 100644 index 69ee57f4..00000000 --- a/src/cjs.js +++ /dev/null @@ -1,3 +0,0 @@ -"use strict"; - -module.exports = require("./index"); diff --git a/src/index.js b/src/index.js index e0453159..5ea4e178 100644 --- a/src/index.js +++ b/src/index.js @@ -1,17 +1,15 @@ -"use strict"; +import path from "node:path"; +import url from "node:url"; -const path = require("node:path"); -const url = require("node:url"); - -const schema = require("./options.json"); -const { +import schema from "./options.json" with { type: "json" }; +import { errorFactory, getCompileFn, getModernWebpackImporter, getSassImplementation, getSassOptions, normalizeSourceMap, -} = require("./utils"); +} from "./utils.js"; // eslint-disable-next-line jsdoc/reject-any-type /** @typedef {any} EXPECTED_ANY */ @@ -28,7 +26,7 @@ async function loader(content) { let implementation; try { - implementation = getSassImplementation(this, options.implementation); + implementation = await getSassImplementation(this, options.implementation); } catch (error) { callback(error); @@ -104,5 +102,4 @@ async function loader(content) { callback(null, result.css.toString(), map); } -module.exports = loader; -module.exports.default = loader; +export default loader; diff --git a/src/utils.js b/src/utils.js index 84cc1456..e9f7539e 100644 --- a/src/utils.js +++ b/src/utils.js @@ -1,7 +1,5 @@ -"use strict"; - -const path = require("node:path"); -const url = require("node:url"); +import path from "node:path"; +import url from "node:url"; /** @typedef {import("sass")} Sass */ /** @typedef {import("sass").StringOptionsWithImporter} SassSassOptions */ @@ -14,36 +12,58 @@ const url = require("node:url"); /** @typedef {Record} LoaderOptions */ /** - * @returns {Sass | SassEmbedded} sass implementation + * Convert a string `implementation` option into something the ECMAScript + * `import()` expression actually accepts. Bare package specifiers and + * `file:` URLs are passed through unchanged; absolute filesystem paths + * (including Windows paths like `C:\\...`) are converted to `file:` URLs + * — dynamic `import()` rejects those otherwise. + * @param {string} specifier import specifier + * @returns {string} a valid dynamic import specifier */ -function getDefaultSassImplementation() { - let sassImplPkg = "sass"; +function normalizeImportSpecifier(specifier) { + if (specifier.startsWith("file:")) { + return specifier; + } - try { - require.resolve("sass-embedded"); - sassImplPkg = "sass-embedded"; - } catch { - sassImplPkg = "sass"; + if (path.isAbsolute(specifier)) { + return url.pathToFileURL(specifier).href; } - return require(sassImplPkg); + return specifier; } /** * This function is not Webpack-specific and can be used by tools wishing to mimic `sass-loader`'s behaviour, so its signature should not be changed. * @param {LoaderContext} loaderContext loader context - * @param {SassImplementation} implementation sass implementation - * @returns {SassImplementation} resolved sass implementation + * @param {SassImplementation | string} implementation sass implementation + * @returns {Promise} resolved sass implementation */ -function getSassImplementation(loaderContext, implementation) { +async function getSassImplementation(loaderContext, implementation) { let resolvedImplementation = implementation; if (!resolvedImplementation) { - resolvedImplementation = getDefaultSassImplementation(); + try { + resolvedImplementation = await import("sass-embedded"); + } catch (err) { + // Only fall back to `sass` when `sass-embedded` is not installed. + // Any other failure (e.g. a broken install or a side-effect throw at + // module-load time) should surface so the user can diagnose it + // instead of being silently masked by the `sass` fallback. + if ( + err?.code !== "ERR_MODULE_NOT_FOUND" && + err?.code !== "MODULE_NOT_FOUND" + ) { + throw err; + } + + resolvedImplementation = await import("sass"); + } } if (typeof resolvedImplementation === "string") { - resolvedImplementation = require(resolvedImplementation); + resolvedImplementation = await import( + normalizeImportSpecifier(resolvedImplementation) + ); } const { info } = resolvedImplementation; @@ -712,7 +732,7 @@ function errorFactory(error) { return obj; } -module.exports = { +export { errorFactory, getCompileFn, getModernWebpackImporter, diff --git a/test/__snapshots__/additionalData-option.test.mjs.snap b/test/__snapshots__/additionalData-option.test.js.snap similarity index 100% rename from test/__snapshots__/additionalData-option.test.mjs.snap rename to test/__snapshots__/additionalData-option.test.js.snap diff --git a/test/__snapshots__/implementation-option.test.mjs.snap b/test/__snapshots__/implementation-option.test.js.snap similarity index 83% rename from test/__snapshots__/implementation-option.test.mjs.snap rename to test/__snapshots__/implementation-option.test.js.snap index 11d79042..18ef1fa5 100644 --- a/test/__snapshots__/implementation-option.test.mjs.snap +++ b/test/__snapshots__/implementation-option.test.js.snap @@ -108,7 +108,7 @@ exports[`implementation option > should throw an error on an unknown sass implem exports[`implementation option > should throw an error on an unknown sass implementation 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nError: Unknown Sass implementation \\"strange-sass\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nError: Unknown Sass implementation \\"strange-sass\\"." ] `; @@ -118,7 +118,7 @@ exports[`implementation option > should throw an error when the \"info\" is unpa exports[`implementation option > should throw an error when the \"info\" is unparseable 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nError: Unknown Sass implementation \\"asdfj\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nError: Unknown Sass implementation \\"asdfj\\"." ] `; @@ -128,7 +128,7 @@ exports[`implementation option > should throw error when the \"info\" does not e exports[`implementation option > should throw error when the \"info\" does not exist 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nError: Unknown Sass implementation." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nError: Unknown Sass implementation." ] `; @@ -138,6 +138,14 @@ exports[`implementation option > should throw error when unresolved package 1`] exports[`implementation option > should throw error when unresolved package 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nError: Cannot find module 'unresolved'" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nError [ERR_MODULE_NOT_FOUND]: Cannot find package 'unresolved' imported from /src/utils.js" ] `; +exports[`implementation option > 'sass_file_url', 'modern' API 1`] = ` +[] +`; + +exports[`implementation option > 'sass_file_url', 'modern' API 2`] = ` +[] +`; + diff --git a/test/__snapshots__/loader.test.mjs.snap b/test/__snapshots__/loader.test.js.snap similarity index 98% rename from test/__snapshots__/loader.test.mjs.snap rename to test/__snapshots__/loader.test.js.snap index 3ece5730..d42a2fe9 100644 --- a/test/__snapshots__/loader.test.mjs.snap +++ b/test/__snapshots__/loader.test.js.snap @@ -588,7 +588,7 @@ exports[`loader > should not use .import.sass files ('dart-sass', 'modern' API, exports[`loader > should not use .import.sass files ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -598,7 +598,7 @@ exports[`loader > should not use .import.sass files ('dart-sass', 'modern-compil exports[`loader > should not use .import.sass files ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -608,7 +608,7 @@ exports[`loader > should not use .import.sass files ('sass-embedded', 'modern' A exports[`loader > should not use .import.sass files ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -618,7 +618,7 @@ exports[`loader > should not use .import.sass files ('sass-embedded', 'modern-co exports[`loader > should not use .import.sass files ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -628,7 +628,7 @@ exports[`loader > should not use .import.scss files ('dart-sass', 'modern' API, exports[`loader > should not use .import.scss files ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -638,7 +638,7 @@ exports[`loader > should not use .import.scss files ('dart-sass', 'modern-compil exports[`loader > should not use .import.scss files ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -648,7 +648,7 @@ exports[`loader > should not use .import.scss files ('sass-embedded', 'modern' A exports[`loader > should not use .import.scss files ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -658,7 +658,7 @@ exports[`loader > should not use .import.scss files ('sass-embedded', 'modern-co exports[`loader > should not use .import.scss files ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -668,7 +668,7 @@ exports[`loader > should output an understandable error ('dart-sass', 'modern' A exports[`loader > should output an understandable error ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -678,7 +678,7 @@ exports[`loader > should output an understandable error ('dart-sass', 'modern' A exports[`loader > should output an understandable error ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -688,7 +688,7 @@ exports[`loader > should output an understandable error ('dart-sass', 'modern-co exports[`loader > should output an understandable error ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -698,7 +698,7 @@ exports[`loader > should output an understandable error ('dart-sass', 'modern-co exports[`loader > should output an understandable error ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -708,7 +708,7 @@ exports[`loader > should output an understandable error ('sass-embedded', 'moder exports[`loader > should output an understandable error ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -718,7 +718,7 @@ exports[`loader > should output an understandable error ('sass-embedded', 'moder exports[`loader > should output an understandable error ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -728,7 +728,7 @@ exports[`loader > should output an understandable error ('sass-embedded', 'moder exports[`loader > should output an understandable error ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -738,7 +738,7 @@ exports[`loader > should output an understandable error ('sass-embedded', 'moder exports[`loader > should output an understandable error ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -748,7 +748,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -758,7 +758,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -768,7 +768,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -778,7 +778,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -788,7 +788,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -798,7 +798,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -808,7 +808,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -818,7 +818,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -828,7 +828,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -838,7 +838,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -848,7 +848,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -858,7 +858,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -868,7 +868,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -878,7 +878,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -888,7 +888,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -898,7 +898,7 @@ exports[`loader > should output an understandable error when a file could not be exports[`loader > should output an understandable error when a file could not be found using \"@use\" rule ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -908,7 +908,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -918,7 +918,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -928,7 +928,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -938,7 +938,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -948,7 +948,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -958,7 +958,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -968,7 +968,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -978,7 +978,7 @@ exports[`loader > should output an understandable error when the problem in \"@i exports[`loader > should output an understandable error when the problem in \"@import\" ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -988,7 +988,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -998,7 +998,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -1008,7 +1008,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -1018,7 +1018,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -1028,7 +1028,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -1038,7 +1038,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -1048,7 +1048,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nExpected newline." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nExpected newline." ] `; @@ -1058,7 +1058,7 @@ exports[`loader > should output an understandable error with a problem in \"@use exports[`loader > should output an understandable error with a problem in \"@use\" ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nexpected \\"{\\"." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nexpected \\"{\\"." ] `; @@ -1740,7 +1740,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1750,7 +1750,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1760,7 +1760,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1770,7 +1770,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1780,7 +1780,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1790,7 +1790,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1800,7 +1800,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1810,7 +1810,7 @@ exports[`loader > should throw an error on ambiguous import (only on \"dart-sass exports[`loader > should throw an error on ambiguous import (only on \"dart-sass\") ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nIt's not clear which file to import. Found:" + "ModuleBuildError: Module build failed (from ../src/index.js):\\nIt's not clear which file to import. Found:" ] `; @@ -1820,7 +1820,7 @@ exports[`loader > should throw an error on circular import ('dart-sass', 'modern exports[`loader > should throw an error on circular import ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1830,7 +1830,7 @@ exports[`loader > should throw an error on circular import ('dart-sass', 'modern exports[`loader > should throw an error on circular import ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1840,7 +1840,7 @@ exports[`loader > should throw an error on circular import ('dart-sass', 'modern exports[`loader > should throw an error on circular import ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1850,7 +1850,7 @@ exports[`loader > should throw an error on circular import ('dart-sass', 'modern exports[`loader > should throw an error on circular import ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1860,7 +1860,7 @@ exports[`loader > should throw an error on circular import ('sass-embedded', 'mo exports[`loader > should throw an error on circular import ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1870,7 +1870,7 @@ exports[`loader > should throw an error on circular import ('sass-embedded', 'mo exports[`loader > should throw an error on circular import ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1880,7 +1880,7 @@ exports[`loader > should throw an error on circular import ('sass-embedded', 'mo exports[`loader > should throw an error on circular import ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1890,7 +1890,7 @@ exports[`loader > should throw an error on circular import ('sass-embedded', 'mo exports[`loader > should throw an error on circular import ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1900,7 +1900,7 @@ exports[`loader > should throw an error on circular use ('dart-sass', 'modern' A exports[`loader > should throw an error on circular use ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nModule loop: this module is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nModule loop: this module is already being loaded." ] `; @@ -1910,7 +1910,7 @@ exports[`loader > should throw an error on circular use ('dart-sass', 'modern' A exports[`loader > should throw an error on circular use ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1920,7 +1920,7 @@ exports[`loader > should throw an error on circular use ('dart-sass', 'modern-co exports[`loader > should throw an error on circular use ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nModule loop: this module is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nModule loop: this module is already being loaded." ] `; @@ -1930,7 +1930,7 @@ exports[`loader > should throw an error on circular use ('dart-sass', 'modern-co exports[`loader > should throw an error on circular use ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1940,7 +1940,7 @@ exports[`loader > should throw an error on circular use ('sass-embedded', 'moder exports[`loader > should throw an error on circular use ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nModule loop: this module is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nModule loop: this module is already being loaded." ] `; @@ -1950,7 +1950,7 @@ exports[`loader > should throw an error on circular use ('sass-embedded', 'moder exports[`loader > should throw an error on circular use ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1960,7 +1960,7 @@ exports[`loader > should throw an error on circular use ('sass-embedded', 'moder exports[`loader > should throw an error on circular use ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nModule loop: this module is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nModule loop: this module is already being loaded." ] `; @@ -1970,7 +1970,7 @@ exports[`loader > should throw an error on circular use ('sass-embedded', 'moder exports[`loader > should throw an error on circular use ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nThis file is already being loaded." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nThis file is already being loaded." ] `; @@ -1980,7 +1980,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -1990,7 +1990,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2000,7 +2000,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2010,7 +2010,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2020,7 +2020,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2030,7 +2030,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2040,7 +2040,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2050,7 +2050,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2060,7 +2060,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2070,7 +2070,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2080,7 +2080,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2090,7 +2090,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2100,7 +2100,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2110,7 +2110,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2120,7 +2120,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2130,7 +2130,7 @@ exports[`loader > should throw an error with a explicit file and a file does not exports[`loader > should throw an error with a explicit file and a file does not exist using \"@use\" rule ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nCan't find stylesheet to import." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nCan't find stylesheet to import." ] `; @@ -2140,7 +2140,7 @@ exports[`loader > should use webpack logger ('dart-sass', 'modern' API, 'sass' s exports[`loader > should use webpack logger ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -2167,7 +2167,7 @@ exports[`loader > should use webpack logger ('dart-sass', 'modern' API, 'scss' s exports[`loader > should use webpack logger ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -2194,7 +2194,7 @@ exports[`loader > should use webpack logger ('dart-sass', 'modern-compiler' API, exports[`loader > should use webpack logger ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -2221,7 +2221,7 @@ exports[`loader > should use webpack logger ('dart-sass', 'modern-compiler' API, exports[`loader > should use webpack logger ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -2248,7 +2248,7 @@ exports[`loader > should use webpack logger ('sass-embedded', 'modern' API, 'sas exports[`loader > should use webpack logger ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -2275,7 +2275,7 @@ exports[`loader > should use webpack logger ('sass-embedded', 'modern' API, 'scs exports[`loader > should use webpack logger ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -2302,7 +2302,7 @@ exports[`loader > should use webpack logger ('sass-embedded', 'modern-compiler' exports[`loader > should use webpack logger ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -2329,7 +2329,7 @@ exports[`loader > should use webpack logger ('sass-embedded', 'modern-compiler' exports[`loader > should use webpack logger ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -3224,7 +3224,7 @@ exports[`loader > should work and output deprecation message (dart-sass) 10`] = exports[`loader > should work and output deprecation message (dart-sass) 11`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\ntest/sass/deprecation.sass 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\ntest/sass/deprecation.sass 1:26 root stylesheet\\n" ] `; @@ -3234,7 +3234,7 @@ exports[`loader > should work and output deprecation message (dart-sass) 12`] = exports[`loader > should work and output deprecation message (dart-sass) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\ntest/scss/deprecation.scss 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\ntest/scss/deprecation.scss 1:26 root stylesheet\\n" ] `; @@ -3248,7 +3248,7 @@ exports[`loader > should work and output deprecation message (dart-sass) 4`] = ` exports[`loader > should work and output deprecation message (dart-sass) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\ntest/sass/deprecation.sass 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\ntest/sass/deprecation.sass 1:26 root stylesheet\\n" ] `; @@ -3262,7 +3262,7 @@ exports[`loader > should work and output deprecation message (dart-sass) 7`] = ` exports[`loader > should work and output deprecation message (dart-sass) 8`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\ntest/scss/deprecation.scss 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\ntest/scss/deprecation.scss 1:26 root stylesheet\\n" ] `; @@ -3280,7 +3280,7 @@ exports[`loader > should work and output deprecation message (sass-embedded) 10` exports[`loader > should work and output deprecation message (sass-embedded) 11`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\n../../../../test/sass/deprecation.sass 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\n../../../../test/sass/deprecation.sass 1:26 root stylesheet\\n" ] `; @@ -3290,7 +3290,7 @@ exports[`loader > should work and output deprecation message (sass-embedded) 12` exports[`loader > should work and output deprecation message (sass-embedded) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\n../../../../test/scss/deprecation.scss 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\n../../../../test/scss/deprecation.scss 1:26 root stylesheet\\n" ] `; @@ -3304,7 +3304,7 @@ exports[`loader > should work and output deprecation message (sass-embedded) 4`] exports[`loader > should work and output deprecation message (sass-embedded) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\n../../../../test/sass/deprecation.sass 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/sass/deprecation.sass:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default\\n\\n\\n../../../../test/sass/deprecation.sass 1:26 root stylesheet\\n" ] `; @@ -3318,7 +3318,7 @@ exports[`loader > should work and output deprecation message (sass-embedded) 7`] exports[`loader > should work and output deprecation message (sass-embedded) 8`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\n../../../../test/scss/deprecation.scss 1:26 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 0, column 25 of file:///test/scss/deprecation.scss:0:25:\\n$saturation: Passing a number without unit % (0) is deprecated.\\n\\nTo preserve current behavior: $saturation * 1%\\n\\nMore info: https://sass-lang.com/d/function-units\\n\\n0 | $side-nav-link-bg-hover: hsla(0, 0, 0%, 0.025) !default;\\n\\n\\n../../../../test/scss/deprecation.scss 1:26 root stylesheet\\n" ] `; @@ -4580,7 +4580,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('da exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4594,7 +4594,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('da exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4608,7 +4608,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('da exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4622,7 +4622,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('da exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4636,7 +4636,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sa exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4650,7 +4650,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sa exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4664,7 +4664,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sa exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4678,7 +4678,7 @@ exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sa exports[`loader > should work when \"@import\" at-rules starting with \"_\" ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n98 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n98 repetitive deprecation warnings omitted." ] `; @@ -4692,7 +4692,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('dart-s exports[`loader > should work when \"@import\" at-rules with extensions ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4706,7 +4706,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('dart-s exports[`loader > should work when \"@import\" at-rules with extensions ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4720,7 +4720,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('dart-s exports[`loader > should work when \"@import\" at-rules with extensions ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4734,7 +4734,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('dart-s exports[`loader > should work when \"@import\" at-rules with extensions ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4748,7 +4748,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('sass-e exports[`loader > should work when \"@import\" at-rules with extensions ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4762,7 +4762,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('sass-e exports[`loader > should work when \"@import\" at-rules with extensions ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4776,7 +4776,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('sass-e exports[`loader > should work when \"@import\" at-rules with extensions ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4790,7 +4790,7 @@ exports[`loader > should work when \"@import\" at-rules with extensions ('sass-e exports[`loader > should work when \"@import\" at-rules with extensions ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n7 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n7 repetitive deprecation warnings omitted." ] `; @@ -4804,7 +4804,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -4818,7 +4818,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -4832,7 +4832,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -4846,7 +4846,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -4860,7 +4860,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -4874,7 +4874,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -4888,7 +4888,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -4902,7 +4902,7 @@ exports[`loader > should work when \"@import\" at-rules without extensions and d exports[`loader > should work when \"@import\" at-rules without extensions and do not start with \"_\" ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n67 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n67 repetitive deprecation warnings omitted." ] `; @@ -6260,22 +6260,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6289,22 +6289,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6318,22 +6318,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6347,22 +6347,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6376,22 +6376,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6405,22 +6405,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6434,22 +6434,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6463,22 +6463,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 withou exports[`loader > should work when \"@use\" with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6492,22 +6492,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6521,22 +6521,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6550,22 +6550,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6579,22 +6579,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6608,22 +6608,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6637,22 +6637,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6666,22 +6666,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6695,22 +6695,22 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n267 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n267 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -6788,17 +6788,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -6812,17 +6812,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -6836,17 +6836,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -6860,17 +6860,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -6884,17 +6884,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -6908,17 +6908,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -6932,17 +6932,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -6956,17 +6956,17 @@ exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, impor exports[`loader > should work when \"@use\" with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n232 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n232 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -7076,22 +7076,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7105,22 +7105,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7134,22 +7134,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7163,22 +7163,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7192,22 +7192,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7221,22 +7221,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7250,22 +7250,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7279,22 +7279,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7308,22 +7308,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7337,22 +7337,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7366,22 +7366,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7395,22 +7395,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7424,22 +7424,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7453,22 +7453,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7482,22 +7482,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7511,22 +7511,22 @@ exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, exports[`loader > should work when \"@use\" with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n265 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n265 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -7728,17 +7728,17 @@ exports[`loader > should work with \"@use\" at-rules from other language style ( exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass', 'modern' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7748,17 +7748,17 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass' exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass', 'modern' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7768,17 +7768,17 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass' exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass', 'modern-compiler' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7788,17 +7788,17 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass' exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass', 'modern-compiler' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7808,17 +7808,17 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('dart-sass' exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embedded', 'modern' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7828,17 +7828,17 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embed exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embedded', 'modern' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7848,17 +7848,17 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embed exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7868,17 +7868,17 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embed exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n97 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n97 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:" ] `; @@ -7888,22 +7888,22 @@ exports[`loader > should work with \"bootstrap\" and custom imports ('sass-embed exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -7913,22 +7913,22 @@ exports[`loader > should work with \"bootstrap\" package v4 without tilde, impor exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -7938,22 +7938,22 @@ exports[`loader > should work with \"bootstrap\" package v4 without tilde, impor exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -7963,22 +7963,22 @@ exports[`loader > should work with \"bootstrap\" package v4 without tilde, impor exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -7988,22 +7988,22 @@ exports[`loader > should work with \"bootstrap\" package v4 without tilde, impor exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8013,22 +8013,22 @@ exports[`loader > should work with \"bootstrap\" package v4 without tilde, impor exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8038,22 +8038,22 @@ exports[`loader > should work with \"bootstrap\" package v4 without tilde, impor exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8063,22 +8063,22 @@ exports[`loader > should work with \"bootstrap\" package v4 without tilde, impor exports[`loader > should work with \"bootstrap\" package v4 without tilde, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n269 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n269 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8092,22 +8092,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8121,22 +8121,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8150,22 +8150,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8179,22 +8179,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8208,22 +8208,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8237,22 +8237,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8266,22 +8266,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8295,22 +8295,22 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v4, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n268 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n268 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 137, column 10 of file:///node_modules/bootstrap-v4/scss/_variables.scss:137:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 151, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:151:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 177, column 42 of file:///node_modules/bootstrap-v4/scss/_variables.scss:177:42:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 20, column 8 of file:///node_modules/bootstrap-v4/scss/_variables.scss:20:8:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 373, column 30 of file:///node_modules/bootstrap-v4/scss/_variables.scss:373:30:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 414, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:414:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 440, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:440:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 45, column 4 of file:///node_modules/bootstrap-v4/scss/_modal.scss:45:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 469, column 4 of file:///node_modules/bootstrap-v4/scss/_custom-forms.scss:469:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 9 of file:///node_modules/bootstrap-v4/scss/_variables.scss:47:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 486, column 40 of file:///node_modules/bootstrap-v4/scss/_variables.scss:486:40:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 53, column 13 of file:///node_modules/bootstrap-v4/scss/vendor/_rfs.scss:53:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 551, column 48 of file:///node_modules/bootstrap-v4/scss/_variables.scss:551:48:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 626, column 45 of file:///node_modules/bootstrap-v4/scss/_variables.scss:626:45:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 76, column 15 of file:///node_modules/bootstrap-v4/scss/_variables.scss:76:15:" ] `; @@ -8320,17 +8320,17 @@ exports[`loader > should work with \"bootstrap\" package v4, import as a package exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8340,17 +8340,17 @@ exports[`loader > should work with \"bootstrap\" package v5 without tilde, impor exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8360,17 +8360,17 @@ exports[`loader > should work with \"bootstrap\" package v5 without tilde, impor exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8380,17 +8380,17 @@ exports[`loader > should work with \"bootstrap\" package v5 without tilde, impor exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8400,17 +8400,17 @@ exports[`loader > should work with \"bootstrap\" package v5 without tilde, impor exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8420,17 +8420,17 @@ exports[`loader > should work with \"bootstrap\" package v5 without tilde, impor exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8440,17 +8440,17 @@ exports[`loader > should work with \"bootstrap\" package v5 without tilde, impor exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8460,17 +8460,17 @@ exports[`loader > should work with \"bootstrap\" package v5 without tilde, impor exports[`loader > should work with \"bootstrap\" package v5 without tilde, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 1`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n234 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n234 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8484,17 +8484,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8508,17 +8508,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8532,17 +8532,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8556,17 +8556,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8580,17 +8580,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8604,17 +8604,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8628,17 +8628,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -8652,17 +8652,17 @@ exports[`loader > should work with \"bootstrap\" package v5, import as a package exports[`loader > should work with \"bootstrap\" package v5, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n233 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n233 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 29 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:29:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 10, column 50 of file:///node_modules/bootstrap-v5/scss/_functions.scss:10:50:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 184, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:184:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 185, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:185:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 186, column 9 of file:///node_modules/bootstrap-v5/scss/_functions.scss:186:9:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 206, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:206:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 211, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:211:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 341, column 26 of file:///node_modules/bootstrap-v5/scss/_variables.scss:341:26:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 10 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 23 of file:///node_modules/bootstrap-v5/scss/_functions.scss:36:23:" ] `; @@ -9247,12 +9247,12 @@ exports[`loader > should work with an empty file ('sass-embedded', 'modern-compi `; exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', 'modern' API, 'sass' syntax) 1`] = ` -"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9266,7 +9266,7 @@ exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9275,12 +9275,12 @@ exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', `; exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', 'modern-compiler' API, 'sass' syntax) 1`] = ` -"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9294,7 +9294,7 @@ exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9303,12 +9303,12 @@ exports[`loader > should work with difference \"@import\" at-rules ('dart-sass', `; exports[`loader > should work with difference \"@import\" at-rules ('sass-embedded', 'modern' API, 'sass' syntax) 1`] = ` -"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with difference \"@import\" at-rules ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9322,7 +9322,7 @@ exports[`loader > should work with difference \"@import\" at-rules ('sass-embedd exports[`loader > should work with difference \"@import\" at-rules ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9331,12 +9331,12 @@ exports[`loader > should work with difference \"@import\" at-rules ('sass-embedd `; exports[`loader > should work with difference \"@import\" at-rules ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 1`] = ` -"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"@charset \\"UTF-8\\";\\n/* @import another/module */\\n@import url(http://example.com/something/from/the/interwebs);\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import another/_underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @import ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @import url(http://example.com/something/from/the/interwebs); */\\n/* scoped import @import language */\\n.scoped-import {\\n @import \\"./file.css\\";\\n}\\n.scoped-import body {\\n font: 100% Helvetica, sans-serif;\\n color: #333;\\n}\\n.scoped-import nav ul {\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n}\\n.scoped-import nav li {\\n display: inline-block;\\n}\\n.scoped-import nav a {\\n display: block;\\n padding: 6px 12px;\\n text-decoration: none;\\n}\\n.scoped-import .box {\\n -webkit-border-radius: 10px;\\n -moz-border-radius: 10px;\\n -ms-border-radius: 10px;\\n border-radius: 10px;\\n}\\n.scoped-import .message, .scoped-import .warning, .scoped-import .error, .scoped-import .success {\\n border: 1px solid #ccc;\\n padding: 10px;\\n color: #333;\\n}\\n.scoped-import .success {\\n border-color: green;\\n}\\n.scoped-import .error {\\n border-color: red;\\n}\\n.scoped-import .warning {\\n border-color: yellow;\\n}\\n.scoped-import .foo:before {\\n content: \\"\\\\e0c6\\";\\n}\\n.scoped-import .bar:before {\\n content: \\"∑\\";\\n}\\n\\n/* @import util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @import ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @import ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with difference \"@import\" at-rules ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9350,7 +9350,7 @@ exports[`loader > should work with difference \"@import\" at-rules ('sass-embedd exports[`loader > should work with difference \"@import\" at-rules ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n6 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n6 repetitive deprecation warnings omitted." ] `; @@ -9359,7 +9359,7 @@ exports[`loader > should work with difference \"@import\" at-rules ('sass-embedd `; exports[`loader > should work with different \"@use\" at-rules ('dart-sass', 'modern' API, 'sass' syntax) 1`] = ` -"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with different \"@use\" at-rules ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` @@ -9383,7 +9383,7 @@ exports[`loader > should work with different \"@use\" at-rules ('dart-sass', 'mo `; exports[`loader > should work with different \"@use\" at-rules ('dart-sass', 'modern-compiler' API, 'sass' syntax) 1`] = ` -"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with different \"@use\" at-rules ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` @@ -9407,7 +9407,7 @@ exports[`loader > should work with different \"@use\" at-rules ('dart-sass', 'mo `; exports[`loader > should work with different \"@use\" at-rules ('sass-embedded', 'modern' API, 'sass' syntax) 1`] = ` -"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with different \"@use\" at-rules ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` @@ -9431,7 +9431,7 @@ exports[`loader > should work with different \"@use\" at-rules ('sass-embedded', `; exports[`loader > should work with different \"@use\" at-rules ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 1`] = ` -"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" +"/* @use another/module */\\n.another-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n.underscore {\\n background: hotpink;\\n}\\n\\n/* @use another/underscore */\\n/* @use another/_underscore */\\n/* @use ~sass-test/underscore */\\n.underscore-sass {\\n background: hotpink;\\n}\\n\\n/* @use ~sass-test/some.module */\\n.some-sass-module {\\n background: hotpink;\\n}\\n\\n/* @use util */\\n.util {\\n color: hotpink;\\n}\\n\\n/* @use ~module */\\n.module {\\n background: hotpink;\\n}\\n\\n/* @use ~another */\\n.another-scss-module-from-node-modules {\\n background: hotpink;\\n}\\n\\na {\\n color: red;\\n}" `; exports[`loader > should work with different \"@use\" at-rules ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` @@ -9556,7 +9556,7 @@ exports[`loader > should work with multiple \"@import\" at-rules without quotes exports[`loader > should work with multiple \"@import\" at-rules without quotes ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n16 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n16 repetitive deprecation warnings omitted." ] `; @@ -9570,7 +9570,7 @@ exports[`loader > should work with multiple \"@import\" at-rules without quotes exports[`loader > should work with multiple \"@import\" at-rules without quotes ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n16 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n16 repetitive deprecation warnings omitted." ] `; @@ -9584,7 +9584,7 @@ exports[`loader > should work with multiple \"@import\" at-rules without quotes exports[`loader > should work with multiple \"@import\" at-rules without quotes ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n16 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n16 repetitive deprecation warnings omitted." ] `; @@ -9598,7 +9598,7 @@ exports[`loader > should work with multiple \"@import\" at-rules without quotes exports[`loader > should work with multiple \"@import\" at-rules without quotes ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n16 repetitive deprecation warnings omitted." + "ModuleWarning: Module Warning (from ../src/index.js):\\n16 repetitive deprecation warnings omitted." ] `; @@ -9900,22 +9900,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -9929,22 +9929,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -9958,22 +9958,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -9987,22 +9987,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10016,22 +10016,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10045,22 +10045,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10074,22 +10074,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10103,22 +10103,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, directly impo exports[`loader > should work with the \"bootstrap-sass\" package, directly import ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10132,22 +10132,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10161,22 +10161,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10190,22 +10190,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10219,22 +10219,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10248,22 +10248,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10277,22 +10277,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10306,22 +10306,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10335,22 +10335,22 @@ exports[`loader > should work with the \"bootstrap-sass\" package, import as a p exports[`loader > should work with the \"bootstrap-sass\" package, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n266 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n266 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 101, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:101:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:102:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 103, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:103:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 104, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss:104:2:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 12, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:12:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 13, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:13:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 14, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:14:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 15, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:15:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 16, column 25 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss:16:25:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 7, column 2 of file:///node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss:7:2:" ] `; @@ -10364,12 +10364,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10383,12 +10383,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10402,12 +10402,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10421,12 +10421,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10440,12 +10440,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10459,12 +10459,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10478,12 +10478,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10497,12 +10497,12 @@ exports[`loader > should work with the \"foundation-sites\" package, adjusting C exports[`loader > should work with the \"foundation-sites\" package, adjusting CSS output ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n316 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n316 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10516,12 +10516,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10535,12 +10535,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10554,12 +10554,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10573,12 +10573,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10592,12 +10592,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10611,12 +10611,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10630,12 +10630,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10649,12 +10649,12 @@ exports[`loader > should work with the \"foundation-sites\" package, import as a exports[`loader > should work with the \"foundation-sites\" package, import as a package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\n183 repetitive deprecation warnings omitted.", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" + "ModuleWarning: Module Warning (from ../src/index.js):\\n183 repetitive deprecation warnings omitted.", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 100, column 12 of file:///node_modules/foundation-sites/scss/util/_value.scss:100:12:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 102, column 6 of file:///node_modules/foundation-sites/scss/util/_value.scss:102:6:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 107, column 13 of file:///node_modules/foundation-sites/scss/util/_value.scss:107:13:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 108, column 15 of file:///node_modules/foundation-sites/scss/util/_value.scss:108:15:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 40, column 8 of file:///node_modules/foundation-sites/scss/util/_breakpoint.scss:40:8:" ] `; @@ -10668,14 +10668,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10689,14 +10689,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10710,14 +10710,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10731,14 +10731,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10752,14 +10752,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10773,14 +10773,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern-compiler' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10794,14 +10794,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10815,14 +10815,14 @@ exports[`loader > should work with the \"material-components-web\" package ('dar exports[`loader > should work with the \"material-components-web\" package ('dart-sass', 'modern-compiler' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10836,14 +10836,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10857,14 +10857,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10878,14 +10878,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10899,14 +10899,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10920,14 +10920,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10941,14 +10941,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10962,14 +10962,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -10983,14 +10983,14 @@ exports[`loader > should work with the \"material-components-web\" package ('sas exports[`loader > should work with the \"material-components-web\" package ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11004,14 +11004,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11025,14 +11025,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11046,14 +11046,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11067,14 +11067,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11088,14 +11088,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11109,14 +11109,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern-compiler' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11130,14 +11130,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11151,14 +11151,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('dart-sass', 'modern-compiler' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11172,14 +11172,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11193,14 +11193,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11214,14 +11214,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11235,14 +11235,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11256,14 +11256,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11277,14 +11277,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11298,14 +11298,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; @@ -11319,14 +11319,14 @@ exports[`loader > should work with the \"material-components-web\" package witho exports[`loader > should work with the \"material-components-web\" package without the \"includePaths\" option ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 5`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 238, column 4 of file:///node_modules/@material/theme/_theme-color.scss:238:4:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 34, column 51 of file:///node_modules/@material/theme/_theme-color.scss:34:51:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 35, column 53 of file:///node_modules/@material/theme/_theme-color.scss:35:53:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 36, column 52 of file:///node_modules/@material/theme/_theme-color.scss:36:52:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/theme/_theme-color.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 47, column 10 of file:///node_modules/@material/typography/_typography.scss:47:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 51, column 10 of file:///node_modules/@material/typography/_typography.scss:51:10:", + "ModuleWarning: Module Warning (from ../src/index.js):\\nDeprecation Warning on line 89, column 26 of file:///node_modules/@material/touch-target/_touch-target.scss:89:26:" ] `; diff --git a/test/__snapshots__/sassOptions-option.test.mjs.snap b/test/__snapshots__/sassOptions-option.test.js.snap similarity index 98% rename from test/__snapshots__/sassOptions-option.test.mjs.snap rename to test/__snapshots__/sassOptions-option.test.js.snap index 50a96199..534c3def 100644 --- a/test/__snapshots__/sassOptions-option.test.mjs.snap +++ b/test/__snapshots__/sassOptions-option.test.js.snap @@ -836,7 +836,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; @@ -846,7 +846,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; @@ -856,7 +856,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; @@ -866,7 +866,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; @@ -876,7 +876,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; @@ -886,7 +886,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; @@ -896,7 +896,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; @@ -906,7 +906,7 @@ exports[`sassOptions option > should work with the \"fatalDeprecations\" option exports[`sassOptions option > should work with the \"fatalDeprecations\" option ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleBuildError: Module build failed (from ../src/cjs.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." + "ModuleBuildError: Module build failed (from ../src/index.js):\\nUsing / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0." ] `; diff --git a/test/__snapshots__/sourceMap-options.test.mjs.snap b/test/__snapshots__/sourceMap-options.test.js.snap similarity index 100% rename from test/__snapshots__/sourceMap-options.test.mjs.snap rename to test/__snapshots__/sourceMap-options.test.js.snap diff --git a/test/__snapshots__/validate-options.test.mjs.snap b/test/__snapshots__/validate-options.test.js.snap similarity index 100% rename from test/__snapshots__/validate-options.test.mjs.snap rename to test/__snapshots__/validate-options.test.js.snap diff --git a/test/__snapshots__/warnRuleAsWarning.test.mjs.snap b/test/__snapshots__/warnRuleAsWarning.test.js.snap similarity index 88% rename from test/__snapshots__/warnRuleAsWarning.test.mjs.snap rename to test/__snapshots__/warnRuleAsWarning.test.js.snap index 6c06b3a1..8aa1190b 100644 --- a/test/__snapshots__/warnRuleAsWarning.test.mjs.snap +++ b/test/__snapshots__/warnRuleAsWarning.test.js.snap @@ -4,7 +4,7 @@ exports[`loader > should emit good formatted warning ('dart-sass', 'modern' API, exports[`loader > should emit good formatted warning ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\ntest/sass/broken.sass 6:4 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\ntest/sass/broken.sass 6:4 root stylesheet\\n" ] `; @@ -22,7 +22,7 @@ exports[`loader > should emit good formatted warning ('dart-sass', 'modern-compi exports[`loader > should emit good formatted warning ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\ntest/sass/broken.sass 6:4 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\ntest/sass/broken.sass 6:4 root stylesheet\\n" ] `; @@ -40,7 +40,7 @@ exports[`loader > should emit good formatted warning ('sass-embedded', 'modern' exports[`loader > should emit good formatted warning ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\n../../../../test/sass/broken.sass 6:4 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\n../../../../test/sass/broken.sass 6:4 root stylesheet\\n" ] `; @@ -58,7 +58,7 @@ exports[`loader > should emit good formatted warning ('sass-embedded', 'modern-c exports[`loader > should emit good formatted warning ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\n../../../../test/sass/broken.sass 6:4 root stylesheet\\n" + "ModuleWarning: Module Warning (from ../src/index.js):\\nWarning on line 5, column 3 of file:///test/sass/broken.sass:5:3:\\nThis selector doesn't have any properties and won't be rendered.\\n\\n5 | asdf\\n\\n\\n../../../../test/sass/broken.sass 6:4 root stylesheet\\n" ] `; @@ -76,7 +76,7 @@ exports[`loader > should emit warning by default ('dart-sass', 'modern' API, 'sa exports[`loader > should emit warning by default ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -103,7 +103,7 @@ exports[`loader > should emit warning by default ('dart-sass', 'modern' API, 'sc exports[`loader > should emit warning by default ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -130,7 +130,7 @@ exports[`loader > should emit warning by default ('dart-sass', 'modern-compiler' exports[`loader > should emit warning by default ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -157,7 +157,7 @@ exports[`loader > should emit warning by default ('dart-sass', 'modern-compiler' exports[`loader > should emit warning by default ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -184,7 +184,7 @@ exports[`loader > should emit warning by default ('sass-embedded', 'modern' API, exports[`loader > should emit warning by default ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -211,7 +211,7 @@ exports[`loader > should emit warning by default ('sass-embedded', 'modern' API, exports[`loader > should emit warning by default ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -238,7 +238,7 @@ exports[`loader > should emit warning by default ('sass-embedded', 'modern-compi exports[`loader > should emit warning by default ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -265,7 +265,7 @@ exports[`loader > should emit warning by default ('sass-embedded', 'modern-compi exports[`loader > should emit warning by default ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -292,7 +292,7 @@ exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern' AP exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -319,7 +319,7 @@ exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern' AP exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -346,7 +346,7 @@ exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern-com exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -373,7 +373,7 @@ exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern-com exports[`loader > should emit warning when 'true' used ('dart-sass', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -400,7 +400,7 @@ exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -427,7 +427,7 @@ exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -454,7 +454,7 @@ exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern-compiler' API, 'sass' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; @@ -481,7 +481,7 @@ exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern exports[`loader > should emit warning when 'true' used ('sass-embedded', 'modern-compiler' API, 'scss' syntax) 2`] = ` [ - "ModuleWarning: Module Warning (from ../src/cjs.js):\\nMy warning message" + "ModuleWarning: Module Warning (from ../src/index.js):\\nMy warning message" ] `; diff --git a/test/__snapshots__/webpackImporter-options.test.mjs.snap b/test/__snapshots__/webpackImporter-options.test.js.snap similarity index 100% rename from test/__snapshots__/webpackImporter-options.test.mjs.snap rename to test/__snapshots__/webpackImporter-options.test.js.snap diff --git a/test/additionalData-option.test.mjs b/test/additionalData-option.test.js similarity index 100% rename from test/additionalData-option.test.mjs rename to test/additionalData-option.test.js diff --git a/test/cjs.test.js b/test/cjs.test.js new file mode 100644 index 00000000..76329a4b --- /dev/null +++ b/test/cjs.test.js @@ -0,0 +1,116 @@ +import assert from "node:assert"; +import { + copyFileSync, + mkdtempSync, + readFileSync, + readdirSync, + rmSync, + writeFileSync, +} from "node:fs"; +import { createRequire } from "node:module"; +import { tmpdir } from "node:os"; +import path from "node:path"; +import { after, before, describe, it } from "node:test"; +import { fileURLToPath } from "node:url"; + +import { transformFileAsync } from "@babel/core"; + +import src from "../src/index.js"; + +const require = createRequire(import.meta.url); + +const srcDir = fileURLToPath(new URL("../src", import.meta.url)); + +/** + * Transpile every `.js` file under `src/` to CommonJS in `outDir`, copy + * non-JS assets, then drop the `dist/cjs/package.json` type marker and + * the same `module.exports = exports.default` post-build append the + * `build:cjs` npm script writes. The test then `require()`s the result. + * @param {string} outDir target directory + */ +async function buildCjsBundle(outDir) { + for (const entry of readdirSync(srcDir, { withFileTypes: true })) { + const source = path.join(srcDir, entry.name); + const target = path.join(outDir, entry.name); + + if (entry.name.endsWith(".js")) { + const result = await transformFileAsync(source, { envName: "cjs" }); + + writeFileSync(target, result.code); + } else { + copyFileSync(source, target); + } + } + + writeFileSync( + path.join(outDir, "package.json"), + `${JSON.stringify({ type: "commonjs" })}\n`, + ); + + const indexPath = path.join(outDir, "index.js"); + + writeFileSync( + indexPath, + `${readFileSync(indexPath, "utf8")}module.exports = exports.default;\nmodule.exports.default = exports.default;\n`, + ); +} + +describe("cjs", () => { + let cjsDir; + let cjsIndexPath; + let cjsIndexSource; + let cjsPackage; + let cjsLoader; + + before(async () => { + cjsDir = mkdtempSync(path.join(tmpdir(), "sass-loader-cjs-")); + + await buildCjsBundle(cjsDir); + + cjsIndexPath = path.join(cjsDir, "index.js"); + cjsIndexSource = readFileSync(cjsIndexPath, "utf8"); + cjsPackage = JSON.parse( + readFileSync(path.join(cjsDir, "package.json"), "utf8"), + ); + cjsLoader = require(cjsIndexPath); + }); + + after(() => { + if (cjsDir) rmSync(cjsDir, { recursive: true, force: true }); + }); + + it("should expose the loader as the default export of the ESM entry", () => { + assert.strictEqual(typeof src, "function"); + }); + + // Run Babel against `src/` directly (no dependency on the published + // `dist/`) and assert the resulting CommonJS bundle has the shape the + // `build:cjs` pipeline promises: it's marked CommonJS, opens with + // Babel's strict-mode prologue and `exports.default = loader`, and ends + // with the `module.exports = exports.default;` unwrap so `require()` + // returns the loader function directly. + it("should produce a require()-able CommonJS bundle via @babel/core", () => { + assert.strictEqual(cjsPackage.type, "commonjs"); + + assert.match(cjsIndexSource, /^"use strict";/); + assert.match(cjsIndexSource, /exports\.default = loader/); + assert.match(cjsIndexSource, /module\.exports = exports\.default;/); + + assert.strictEqual(typeof cjsLoader, "function"); + assert.strictEqual(cjsLoader.default, cjsLoader); + }); + + // Pre-refactor consumers loaded the loader two ways: + // const loader = require("sass-loader"); // function + // import loader from "sass-loader"; // function + // Both surfaces must continue to return a callable function, with a + // `.default` property pointing back at the same function so transitional + // `require("sass-loader").default` calls keep working. + it("should expose the loader through `require` as a callable function (pre-refactor shape)", () => { + assert.strictEqual(typeof cjsLoader, "function"); + assert.strictEqual(typeof src, "function"); + assert.strictEqual(cjsLoader.default, cjsLoader); + assert.strictEqual(cjsLoader.name, src.name); + assert.strictEqual(cjsLoader.length, src.length); + }); +}); diff --git a/test/cjs.test.mjs b/test/cjs.test.mjs deleted file mode 100644 index 103bdcc9..00000000 --- a/test/cjs.test.mjs +++ /dev/null @@ -1,11 +0,0 @@ -import assert from "node:assert"; -import { describe, it } from "node:test"; - -import cjs from "../src/cjs.js"; -import src from "../src/index.js"; - -describe("cjs", () => { - it("should exported", () => { - assert.strictEqual(cjs, src); - }); -}); diff --git a/test/helpers/getCompiler.js b/test/helpers/getCompiler.js index bcbaa949..ed4d36f3 100644 --- a/test/helpers/getCompiler.js +++ b/test/helpers/getCompiler.js @@ -21,7 +21,7 @@ const module = (config) => ({ loader: path.join(__dirname, "./testLoader.cjs"), }, { - loader: path.join(__dirname, "../../src/cjs.js"), + loader: path.join(__dirname, "../../src/index.js"), options: (config.loader && config.loader.options) || {}, }, ], diff --git a/test/helpers/getImplementationByName.js b/test/helpers/getImplementationByName.js index d41d209e..8696441f 100644 --- a/test/helpers/getImplementationByName.js +++ b/test/helpers/getImplementationByName.js @@ -1,18 +1,75 @@ -import { createRequire } from "node:module"; +import { readFileSync } from "node:fs"; +// eslint-disable-next-line n/no-unsupported-features/node-builtins +import { findPackageJSON } from "node:module"; +import path from "node:path"; +import { pathToFileURL } from "node:url"; -const require = createRequire(import.meta.url); +/** + * Resolve the absolute filesystem path of a package's ESM entry, walking + * the `exports` field's `node` / `import` / `default` conditions. Used by + * the "sass_string" / "sass_file_url" fixtures so the loader's + * `await import()` returns a real ESM namespace (with `info`, + * `compileStringAsync`, …) rather than a CJS-interop `{ default: ... }` + * wrapper that would need `.default` unwrapping. + * @param {string} specifier package name + * @returns {string} absolute filesystem path + */ +function resolveEsmPath(specifier) { + const pkgPath = findPackageJSON( + specifier, + new URL("../../src/utils.js", import.meta.url), + ); + const pkg = JSON.parse(readFileSync(pkgPath, "utf8")); + + const walk = (node) => { + if (typeof node === "string") return node; + if (Array.isArray(node)) { + for (const item of node) { + const r = walk(item); + if (r) return r; + } + } + if (node && typeof node === "object") { + for (const key of ["node", "import", "default"]) { + if (key in node) { + const r = walk(node[key]); + if (r) return r; + } + } + } + return null; + }; + + const entry = + (pkg.exports && walk(pkg.exports["."] ?? pkg.exports)) ?? + pkg.module ?? + pkg.main ?? + "index.js"; + + return path.join(path.dirname(pkgPath), entry); +} /** - * @param {"dart-sass" | "sass" | "sass-embedded"} implementationName implementation name - * @returns {SassImplementation} a sass implementation + * @param {"dart-sass" | "sass" | "sass-embedded" | "sass_string" | "sass_file_url"} implementationName implementation name + * @returns {Promise} a sass implementation */ -function getImplementationByName(implementationName) { +async function getImplementationByName(implementationName) { if (implementationName === "dart-sass") { - return require("sass"); + return import("sass"); } else if (implementationName === "sass-embedded") { - return require("sass-embedded"); + // Match the loader's `await import("sass-embedded")` so tests and loader + // hold the same module instance (CJS and ESM builds are cached + // separately). + return import("sass-embedded"); } else if (implementationName === "sass_string") { - return require.resolve("sass"); + // Absolute filesystem path; on Windows this is a backslash-separated + // path like `C:\\...` which dynamic `import()` does not accept until + // it's normalized to a `file:` URL. The ESM entry is used so the + // loader's `await import(path)` exposes named exports (`info`, + // `compileStringAsync`, …) directly instead of via `.default`. + return resolveEsmPath("sass"); + } else if (implementationName === "sass_file_url") { + return pathToFileURL(resolveEsmPath("sass")).href; } throw new Error(`Can't find ${implementationName}`); diff --git a/test/helpers/getImplementationsAndAPI.js b/test/helpers/getImplementationsAndAPI.js index e637d961..49587d9e 100644 --- a/test/helpers/getImplementationsAndAPI.js +++ b/test/helpers/getImplementationsAndAPI.js @@ -1,9 +1,36 @@ -import { createRequire } from "node:module"; +import * as sassNs from "sass"; +import * as sassEmbeddedNs from "sass-embedded"; -const require = createRequire(import.meta.url); +/** + * Copy every export from a module namespace except `default` into a plain, + * mutable object. ESM namespace properties are non-configurable, so + * `node:test`'s `mock.method` cannot replace them in place. The wrapper is + * also handed straight to `mock.module`'s `namedExports` in + * `implementation-option.test.js`, so any later `mock.method(wrapper, ...)` + * mutates the exact object the mock module reads from — keeping the test + * spies and the loader's `await import(...)` in lockstep. + * + * `default` is excluded because `mock.module` synthesizes ESM source text + * from `namedExports`, and a `default` key would produce + * `export const default = ...` (a syntax error). The default export is + * fed in separately via `mock.module`'s `defaultExport` option. + * @param {Record} ns module namespace + * @returns {Record} mutable copy without the `default` key + */ +function namedExportsOnly(ns) { + const copy = {}; + + for (const key of Object.keys(ns)) { + if (key !== "default") { + copy[key] = ns[key]; + } + } -const dartSass = require("sass"); -const SassEmbedded = require("sass-embedded"); + return copy; +} + +const sass = namedExportsOnly(sassNs); +const sassEmbedded = namedExportsOnly(sassEmbeddedNs); /** @typedef {import("../../src/index.js").EXPECTED_ANY} EXPECTED_ANY */ @@ -13,24 +40,26 @@ const SassEmbedded = require("sass-embedded"); export default function getImplementationsAndAPI() { return [ { - name: dartSass.info.split("\t")[0], - implementation: dartSass, + name: sass.info.split("\t")[0], + implementation: sass, api: "modern", }, { - name: dartSass.info.split("\t")[0], - implementation: dartSass, + name: sass.info.split("\t")[0], + implementation: sass, api: "modern-compiler", }, { - name: SassEmbedded.info.split("\t")[0], - implementation: SassEmbedded, + name: sassEmbedded.info.split("\t")[0], + implementation: sassEmbedded, api: "modern", }, { - name: SassEmbedded.info.split("\t")[0], - implementation: SassEmbedded, + name: sassEmbedded.info.split("\t")[0], + implementation: sassEmbedded, api: "modern-compiler", }, ]; } + +export { sass, sassEmbedded }; diff --git a/test/implementation-option.test.mjs b/test/implementation-option.test.js similarity index 64% rename from test/implementation-option.test.mjs rename to test/implementation-option.test.js index 3ae7727c..ed94fa56 100644 --- a/test/implementation-option.test.mjs +++ b/test/implementation-option.test.js @@ -1,7 +1,12 @@ import assert from "node:assert"; -import { createRequire } from "node:module"; +import { readFileSync } from "node:fs"; +// eslint-disable-next-line n/no-unsupported-features/node-builtins +import { findPackageJSON } from "node:module"; +import path from "node:path"; import { describe, it, mock } from "node:test"; +import { pathToFileURL } from "node:url"; +import { sass, sassEmbedded } from "./helpers/getImplementationsAndAPI.js"; import { close, compile, @@ -14,36 +19,114 @@ import { getWarnings, } from "./helpers/index.js"; -const require = createRequire(import.meta.url); +/** + * Resolve the absolute `file:` URL that `await import(specifier)` from inside + * `src/` would land on. Walks the package's `exports` field preferring the + * `node` / `import` / `default` conditions, falling back to `module` / `main`. + * Used to key `mock.module` so the loader's dynamic `import("sass-embedded")` + * / `import("sass")` get intercepted even though they are issued from outside + * the `test/` directory (and so are not affected by the `test/node_modules/sass` + * fixture that blocks bare-specifier resolution from inside `test/`). + * @param {string} specifier package name to resolve + * @returns {string} `file:` URL of the package's ESM entry + */ +function resolveEsmEntry(specifier) { + const pkgPath = findPackageJSON( + specifier, + new URL("../src/utils.js", import.meta.url), + ); + const pkg = JSON.parse(readFileSync(pkgPath, "utf8")); + + const walk = (node) => { + if (typeof node === "string") return node; + if (Array.isArray(node)) { + for (const item of node) { + const r = walk(item); + if (r) return r; + } + } + if (node && typeof node === "object") { + for (const key of ["node", "import", "default"]) { + if (key in node) { + const r = walk(node[key]); + if (r) return r; + } + } + } + return null; + }; -const dartSass = require("sass"); -const sassEmbedded = require("sass-embedded"); + const entry = + (pkg.exports && walk(pkg.exports["."] ?? pkg.exports)) ?? + pkg.module ?? + pkg.main ?? + "index.js"; + + return pathToFileURL(path.join(path.dirname(pkgPath), entry)).href; +} + +const sassEsmURL = resolveEsmEntry("sass"); +const sassEmbeddedEsmURL = resolveEsmEntry("sass-embedded"); + +// Make the loader's `await import("sass")` / `await import("sass-embedded")` +// resolve to the same plain-object wrappers the test mutates via +// `mock.method`. Later spy installs and property mutations on `sass` / +// `sassEmbedded` must propagate to the loader's view, which means +// `mock.module`'s exports have to read from the wrapper *live*. +// +// On Node 22, `mock.module({ namedExports, defaultExport })` is live by +// itself. Starting with Node 24 those options are deprecated and the +// new unified `exports` option snapshots values at synthesis time — +// so on Node 24+ we have to thread reads through getters that delegate +// to the wrapper. +const NODE_MAJOR = Number.parseInt(process.versions.node.split(".")[0], 10); /** - * `node:test` `mock.method` cannot replace getter-style properties. Convert - * them to plain data properties first so they can be mocked in place. - * @param {EXPECTED_ANY} obj target object - * @param {string} name property name - * @typedef {import("../src/index.js").EXPECTED_ANY} EXPECTED_ANY + * Build a `mock.module` options bag whose exports read live from the + * given wrapper object. + * @param {Record} target wrapped namespace + * @returns {Record} options accepted by the running Node's `mock.module` */ -function ensureDataProperty(obj, name) { - const desc = Object.getOwnPropertyDescriptor(obj, name); - if (desc && desc.get && !("value" in desc)) { - Object.defineProperty(obj, name, { - value: obj[name], - writable: true, - configurable: true, - enumerable: desc.enumerable, +function mockModuleOptions(target) { + if (NODE_MAJOR < 24) { + return { namedExports: target, defaultExport: target }; + } + + const liveExports = {}; + + for (const key of Object.keys(target)) { + Object.defineProperty(liveExports, key, { + enumerable: true, + get: () => target[key], }); } -} -ensureDataProperty(dartSass, "compileStringAsync"); -ensureDataProperty(dartSass, "initAsyncCompiler"); -ensureDataProperty(sassEmbedded, "compileStringAsync"); -ensureDataProperty(sassEmbedded, "initAsyncCompiler"); + Object.defineProperty(liveExports, "default", { + enumerable: true, + get: () => target, + }); -const implementations = [...getImplementationsAndAPI(), "sass_string"]; + return { exports: liveExports }; +} + +mock.module(sassEsmURL, mockModuleOptions(sass)); +mock.module(sassEmbeddedEsmURL, mockModuleOptions(sassEmbedded)); + +/** @typedef {import("../src/index.js").EXPECTED_ANY} EXPECTED_ANY */ + +const implementations = [ + ...getImplementationsAndAPI(), + { + name: "sass_string", + implementation: await getImplementationByName("sass_string"), + api: "modern", + }, + { + name: "sass_file_url", + implementation: await getImplementationByName("sass_file_url"), + api: "modern", + }, +]; /** * Helper to create spy functions for the modern Compiler API. @@ -77,8 +160,8 @@ const spyOnCompiler = (implementation) => { }; describe("implementation option", () => { - const dartSassSpyModernAPI = mock.method(dartSass, "compileStringAsync"); - const dartSassCompilerSpies = spyOnCompiler(dartSass); + const dartSassSpyModernAPI = mock.method(sass, "compileStringAsync"); + const dartSassCompilerSpies = spyOnCompiler(sass); const sassEmbeddedSpyModernAPI = mock.method( sassEmbedded, "compileStringAsync", @@ -86,17 +169,7 @@ describe("implementation option", () => { const sassEmbeddedCompilerSpies = spyOnCompiler(sassEmbedded); for (const item of implementations) { - let implementationName; - let implementation; - let api; - - if (typeof item === "string") { - implementationName = item; - implementation = getImplementationByName(implementationName); - api = "modern"; - } else { - ({ name: implementationName, api, implementation } = item); - } + const { name: implementationName, api, implementation } = item; it(`'${implementationName}', '${api}' API`, async (t) => { const testId = getTestId("language", "scss"); @@ -232,7 +305,7 @@ describe("implementation option", () => { it("auto API falls back to modern when initAsyncCompiler is absent", async (t) => { const testId = getTestId("language", "scss"); const fakeImplementation = { - ...dartSass, + ...sass, initAsyncCompiler: undefined, }; const options = { @@ -327,7 +400,7 @@ describe("implementation option", () => { const testId = getTestId("language", "scss"); const options = { api: "modern-compiler", - implementation: getImplementationByName(implementationName), + implementation: await getImplementationByName(implementationName), }; const compiler = getCompiler(testId, { loader: { options } }); const stats = await compile(compiler); @@ -358,7 +431,7 @@ describe("implementation option", () => { it("should throw an error on an unknown sass implementation", async (t) => { const testId = getTestId("language", "scss"); const options = { - implementation: { ...dartSass, info: "strange-sass\t1.0.0" }, + implementation: { ...sass, info: "strange-sass\t1.0.0" }, }; const compiler = getCompiler(testId, { loader: { options } }); @@ -373,7 +446,7 @@ describe("implementation option", () => { it('should throw an error when the "info" is unparseable', async (t) => { const testId = getTestId("language", "scss"); const options = { - implementation: { ...dartSass, info: "asdfj" }, + implementation: { ...sass, info: "asdfj" }, }; const compiler = getCompiler(testId, { loader: { options } }); @@ -388,7 +461,7 @@ describe("implementation option", () => { it('should throw error when the "info" does not exist', async (t) => { const testId = getTestId("language", "scss"); const options = { - implementation: { ...dartSass, info: undefined }, + implementation: { ...sass, info: undefined }, }; const compiler = getCompiler(testId, { loader: { options } }); @@ -461,28 +534,72 @@ describe("implementation option", () => { secondDisposeSpy.mock.restore(); }); - // The two tests below relied on `jest.doMock` to make `require("sass")` / - // `require("sass-embedded")` throw. `node:test`'s `mock.module` API uses ESM - // resolution, which trips on the existing `test/node_modules/sass` fixture - // directory (same package name, no entry point), so they're skipped until a - // resolution-free mock is available. - it( - "should try to load using valid order", - { - skip: "blocked by test/node_modules/sass fixture (mock.module needs ESM resolution)", - }, - async () => { - // intentionally empty - }, - ); + // The two tests below originally relied on `jest.doMock` to make + // `require("sass")` / `require("sass-embedded")` throw. `node:test`'s + // `mock.module` resolves bare specifiers from the caller's location, + // which used to trip on the `test/node_modules/sass` fixture (a + // deliberately-invalid package). The fixture has since been renamed to + // `test/node_modules/sass-test`, so the bare-specifier resolution + // problem is gone — but `mock.module` for these URLs is *already* held + // at the suite level (to give the loader and the spies the same + // implementation object). Re-mocking would throw "module is already + // mocked", so instead these tests temporarily mutate the very objects + // the suite-level `mock.module` uses as `namedExports`. The loader's + // `await import(...)` reads through to the live values, restored in + // `finally`. + it("should try to load using valid order", async () => { + // `mock.module`'s synthesized exports list is locked at the time of + // synthesis, so adding new keys to `sass` / `sassEmbedded` here + // wouldn't reach the loader. Encode the marker into the existing + // `info` export instead, which is what `getSassImplementation` + // already reads to identify the implementation. + const savedSassInfo = sass.info; + const savedSassEmbeddedInfo = sassEmbedded.info; + + sass.info = "dart-sass\t99.0.0\t(Sass Compiler)\t[sass-mock]"; + sassEmbedded.info = + "sass-embedded\t99.0.0\t(Sass Compiler)\t[sass-embedded-mock]"; + + try { + const { getSassImplementation } = await import( + `../src/utils.js?valid-order=${Date.now()}` + ); + const impl = await getSassImplementation({}, undefined); - it( - "should not swallow an error when trying to load a sass implementation", - { - skip: "blocked by test/node_modules/sass fixture (mock.module needs ESM resolution)", - }, - async () => { - // intentionally empty - }, - ); + // sass-embedded is preferred when both load successfully. + assert.match(impl.info, /^sass-embedded\t.*\[sass-embedded-mock\]/); + } finally { + sass.info = savedSassInfo; + sassEmbedded.info = savedSassEmbeddedInfo; + } + }); + + it("should not swallow an error when trying to load a sass implementation", async () => { + // Make sass-embedded.info a getter that throws — `await import(...)` + // succeeds (the mocked module is real), but the moment the loader + // looks at `.info`, the throw surfaces instead of being silently + // swallowed by a fallback to `sass`. + const savedDesc = Object.getOwnPropertyDescriptor(sassEmbedded, "info"); + + Object.defineProperty(sassEmbedded, "info", { + configurable: true, + enumerable: true, + get() { + throw new Error("Some error sass-embedded"); + }, + }); + + try { + const { getSassImplementation } = await import( + `../src/utils.js?no-swallow=${Date.now()}` + ); + + await assert.rejects( + getSassImplementation({}, undefined), + /Some error sass-embedded/, + ); + } finally { + Object.defineProperty(sassEmbedded, "info", savedDesc); + } + }); }); diff --git a/test/loader.test.mjs b/test/loader.test.js similarity index 100% rename from test/loader.test.mjs rename to test/loader.test.js diff --git a/test/node_modules/sass/_underscore.sass b/test/node_modules/sass-test/_underscore.sass similarity index 100% rename from test/node_modules/sass/_underscore.sass rename to test/node_modules/sass-test/_underscore.sass diff --git a/test/node_modules/sass/some.module.sass b/test/node_modules/sass-test/some.module.sass similarity index 100% rename from test/node_modules/sass/some.module.sass rename to test/node_modules/sass-test/some.module.sass diff --git a/test/resolver.test.mjs b/test/resolver.test.js similarity index 93% rename from test/resolver.test.mjs rename to test/resolver.test.js index d2a5dcf3..75679a43 100644 --- a/test/resolver.test.mjs +++ b/test/resolver.test.js @@ -1,16 +1,13 @@ import assert from "node:assert"; -import { createRequire } from "node:module"; import path from "node:path"; import { describe, it } from "node:test"; import { fileURLToPath } from "node:url"; import enhanced from "enhanced-resolve"; -import { getWebpackResolver } from "../src/utils.js"; - -const require = createRequire(import.meta.url); +import * as sass from "sass"; -const sass = require("sass"); +import { getWebpackResolver } from "../src/utils.js"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); diff --git a/test/sass/import-without-quotes.sass b/test/sass/import-without-quotes.sass index a116ed5e..0c44a6a3 100644 --- a/test/sass/import-without-quotes.sass +++ b/test/sass/import-without-quotes.sass @@ -18,4 +18,4 @@ @import ./directory-6/file/index.sass @import directory-6/file/_index.sass @import ./directory-6/file/_index.sass -@import ~sass/underscore +@import ~sass-test/underscore diff --git a/test/sass/imports.sass b/test/sass/imports.sass index 6011ec20..cc12e488 100644 --- a/test/sass/imports.sass +++ b/test/sass/imports.sass @@ -4,12 +4,12 @@ @import another/underscore /* @import another/_underscore */ @import another/_underscore -/* @import ~sass/underscore */ -@import ~sass/underscore +/* @import ~sass-test/underscore */ +@import ~sass-test/underscore // Import a module with a dot in its name // @see https://github.com/webpack/sass-loader/issues/167 -/* @import ~sass/some.module */ -@import ~sass/some.module +/* @import ~sass-test/some.module */ +@import ~sass-test/some.module /* @import url(http://example.com/something/from/the/interwebs); */ @import url(http://example.com/something/from/the/interwebs) /* scoped import @import language */ diff --git a/test/sass/uses.sass b/test/sass/uses.sass index 6cdd3556..961038fa 100644 --- a/test/sass/uses.sass +++ b/test/sass/uses.sass @@ -5,12 +5,12 @@ @use "another/underscore" as underscore /* @use another/_underscore */ @use "another/_underscore" as underscore2 -/* @use ~sass/underscore */ -@use "~sass/underscore" as underscore3 +/* @use ~sass-test/underscore */ +@use "~sass-test/underscore" as underscore3 // Import a module with a dot in its name // @see https://github.com/webpack/sass-loader/issues/167 -/* @use ~sass/some.module */ -@use "~sass/some.module" +/* @use ~sass-test/some.module */ +@use "~sass-test/some.module" // The local util file should take precedence over Node's util module // See https://github.com/webpack/sass-loader/issues/556 /* @use util */ diff --git a/test/sassOptions-option.test.mjs b/test/sassOptions-option.test.js similarity index 100% rename from test/sassOptions-option.test.mjs rename to test/sassOptions-option.test.js diff --git a/test/setup-snapshots.mjs b/test/setup-snapshots.js similarity index 100% rename from test/setup-snapshots.mjs rename to test/setup-snapshots.js diff --git a/test/sourceMap-options.test.mjs b/test/sourceMap-options.test.js similarity index 99% rename from test/sourceMap-options.test.mjs rename to test/sourceMap-options.test.js index 033b7157..89020e0f 100644 --- a/test/sourceMap-options.test.mjs +++ b/test/sourceMap-options.test.js @@ -236,7 +236,7 @@ describe("sourceMap option", () => { }, use: [ { - loader: path.join(__dirname, "../src/cjs.js"), + loader: path.join(__dirname, "../src/index.js"), options: { implementation, api, diff --git a/test/validate-options.test.mjs b/test/validate-options.test.js similarity index 94% rename from test/validate-options.test.mjs rename to test/validate-options.test.js index c077e8eb..df0d2389 100644 --- a/test/validate-options.test.mjs +++ b/test/validate-options.test.js @@ -2,6 +2,8 @@ import assert from "node:assert"; import { createRequire } from "node:module"; import { describe, it } from "node:test"; +import * as sass from "sass"; + import { compile, getCompiler, @@ -15,6 +17,8 @@ describe("validate options", () => { const tests = { implementation: { success: [ + // We can't JSON.stringify it + { ...sass }, require("sass-embedded"), require("sass"), "sass-embedded", @@ -81,7 +85,7 @@ describe("validate options", () => { const compiler = getCompiler(testId, { loader: { options: { - implementation: getImplementationByName("dart-sass"), + implementation: await getImplementationByName("dart-sass"), [key]: value, }, }, diff --git a/test/warnRuleAsWarning.test.mjs b/test/warnRuleAsWarning.test.js similarity index 100% rename from test/warnRuleAsWarning.test.mjs rename to test/warnRuleAsWarning.test.js diff --git a/test/webpackImporter-options.test.mjs b/test/webpackImporter-options.test.js similarity index 100% rename from test/webpackImporter-options.test.mjs rename to test/webpackImporter-options.test.js