12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- "use strict";
- const makeSerializable = require("../util/makeSerializable");
- const NullDependency = require("./NullDependency");
- class CssExportDependency extends NullDependency {
-
- constructor(name, value) {
- super();
- this.name = name;
- this.value = value;
- }
- get type() {
- return "css :export";
- }
-
- getExports(moduleGraph) {
- const name = this.name;
- return {
- exports: [
- {
- name,
- canMangle: true
- }
- ],
- dependencies: undefined
- };
- }
- serialize(context) {
- const { write } = context;
- write(this.name);
- write(this.value);
- super.serialize(context);
- }
- deserialize(context) {
- const { read } = context;
- this.name = read();
- this.value = read();
- super.deserialize(context);
- }
- }
- CssExportDependency.Template = class CssExportDependencyTemplate extends (
- NullDependency.Template
- ) {
-
- apply(dependency, source, { cssExports }) {
- const dep = (dependency);
- cssExports.set(dep.name, dep.value);
- }
- };
- makeSerializable(
- CssExportDependency,
- "webpack/lib/dependencies/CssExportDependency"
- );
- module.exports = CssExportDependency;
|