@master/css.compiler
Advanced tools
Comparing version 2.0.0-beta.92 to 2.0.0-beta.93
@@ -1,1 +0,1 @@ | ||
{"name":"@master/css.compiler","scripts":{"build":"aron pack --platform=node","dev":"npm run build -- --watch","lint":"eslint ./src","test":"jest"},"license":"MIT","description":"The ahead-of-time compiler of Master CSS","author":"Aoyue Design LLC.","funding":"https://docs.master.co/css/donate","homepage":"https://css.master.co","bugs":{"url":"https://github.com/master-co/css/issues"},"repository":{"type":"git","url":"https://github.com/master-co/css.git","directory":"packages/compiler"},"keywords":["webpack","plugin","integration","vite","parcel","build tools","css","mastercss","vite-plugin"],"sideEffects":false,"main":"./dist/index.cjs","jsnext:main":"./dist/index.mjs","esnext":"./dist/index.mjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs","types":"./dist/index.d.ts"}},"files":["dist"],"dependencies":{"@master/css":"^2.0.0-beta.92","aronlog":"^1.0.0-beta.32","cross-import":"^1.4.4","fast-glob":"^3.2.12","minimatch":"^5.1.1","upath":"^2.0.1"},"version":"2.0.0-beta.92"} | ||
{"name":"@master/css.compiler","scripts":{"build":"aron pack --platform=node","dev":"npm run build -- --watch","lint":"eslint ./src","test":"jest"},"license":"MIT","description":"The ahead-of-time compiler of Master CSS","author":"Aoyue Design LLC.","funding":"https://docs.master.co/css/donate","homepage":"https://css.master.co","bugs":{"url":"https://github.com/master-co/css/issues"},"repository":{"type":"git","url":"https://github.com/master-co/css.git","directory":"packages/compiler"},"keywords":["webpack","plugin","integration","vite","parcel","build tools","css","mastercss","vite-plugin"],"sideEffects":false,"main":"./dist/index.cjs","jsnext:main":"./dist/index.mjs","esnext":"./dist/index.mjs","module":"./dist/index.mjs","types":"./dist/index.d.ts","exports":{".":{"require":"./dist/index.cjs","import":"./dist/index.mjs","types":"./dist/index.d.ts"}},"files":["dist"],"dependencies":{"@master/css":"^2.0.0-beta.93","aronlog":"^1.0.0-beta.32","cross-import":"^1.4.4","fast-glob":"^3.2.12","minimatch":"^5.1.1","upath":"^2.0.1"},"version":"2.0.0-beta.93"} |
@@ -64,3 +64,3 @@ <br> | ||
```bash | ||
npm install @master/css.compiler` | ||
npm install @master/css.compiler | ||
``` | ||
@@ -77,5 +77,7 @@ | ||
config: 'master.css.{js,mjs,cjs}', | ||
// specify sources, not excluded by `options.exclude` | ||
// forcibly specify sources for scanning, not excluded by `options.exclude` | ||
sources: [], | ||
// specify sources for scanning | ||
include: ['**/*.{html,js,jsx,ts,tsx,svelte,astro,vue,md,mdx,pug,php}'], | ||
// specify sources to exclude | ||
exclude: [ | ||
@@ -90,3 +92,7 @@ '**/node_modules/**', | ||
'README.md' | ||
] | ||
], | ||
// whitelist of class names for unpredictable dynamics | ||
fixedClasses: [], | ||
// blacklist of class names to exclude accidentally captured | ||
ignoredClasses: [] // or RegExp[] | ||
} | ||
@@ -150,2 +156,2 @@ ``` | ||
} | ||
``` | ||
``` |
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
20585
154
Updated@master/css@^2.0.0-beta.93