-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(plugin-vue): ensure id on descriptor
- Loading branch information
Showing
4 changed files
with
59 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import path from 'path' | ||
import slash from 'slash' | ||
import hash from 'hash-sum' | ||
import { SFCDescriptor } from '@vue/compiler-sfc' | ||
|
||
export function genScopeId( | ||
descriptor: SFCDescriptor, | ||
root: string, | ||
isProduction = false | ||
) { | ||
// ensure the path is normalized in a way that is consistent inside | ||
// project (relative to root) and on different systems. | ||
const normalizedPath = slash( | ||
path.normalize(path.relative(root, descriptor.filename)) | ||
) | ||
return hash(normalizedPath + (isProduction ? descriptor.source : '')) | ||
} |