@tokey/css-value-parser
Advanced tools
Comparing version 0.0.2 to 0.1.0
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -6,0 +10,0 @@ if (k2 === undefined) k2 = k; |
@@ -9,3 +9,2 @@ "use strict"; | ||
const core_1 = require("@tokey/core"); | ||
const _1 = require("."); | ||
function parseCSSValue(source, _options) { | ||
@@ -131,3 +130,3 @@ const tokens = (0, tokenizer_1.tokenizeValue)(source); | ||
else if ((0, core_1.isComment)(type)) { | ||
ast.push((0, _1.comment)({ | ||
ast.push((0, ast_types_1.comment)({ | ||
value, | ||
@@ -134,0 +133,0 @@ start, |
{ | ||
"name": "@tokey/css-value-parser", | ||
"description": "value parser for css", | ||
"version": "0.0.2", | ||
"version": "0.1.0", | ||
"main": "dist/index.js", | ||
@@ -11,6 +11,6 @@ "types": "dist/index.d.ts", | ||
"dependencies": { | ||
"@tokey/core": "^1.2.1" | ||
"@tokey/core": "^1.3.0" | ||
}, | ||
"devDependencies": { | ||
"@webref/css": "^3.0.1" | ||
"@webref/css": "^3.0.8" | ||
}, | ||
@@ -17,0 +17,0 @@ "keywords": [ |
@@ -22,2 +22,3 @@ import { | ||
invalid, | ||
comment, | ||
} from './ast-types'; | ||
@@ -34,3 +35,2 @@ import { | ||
import { Seeker, isComment } from '@tokey/core'; | ||
import { comment } from '.'; | ||
@@ -37,0 +37,0 @@ export type ParseResults = Array<BaseAstNode>; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
135992
2722
Updated@tokey/core@^1.3.0