{"_id":"@aigan/polymer-css-compiler","name":"@aigan/polymer-css-compiler","dist-tags":{"latest":"1.0.3"},"versions":{"1.0.3":{"name":"@aigan/polymer-css-compiler","version":"1.0.3","description":"Polymer CSS compiler - compile CSS files into polymer style modules","main":"tasks/polymer-css-compiler.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"Roy Velich"},"license":"MIT","dependencies":{"mustache":"^1.2.0"},"gitHead":"a9fe16d67bcf682b3ef9ee5bdf2ecef62c5c5644","_id":"@aigan/polymer-css-compiler@1.0.3","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-ibrLbX2+4xS3zm3YlWpID/OF17nbbYQ6LZ348DlyGfhQCY7Aw7zlj0l/5MnmPcbTwyT3ODvZV31vuMAeAPEZmw==","shasum":"c62e896b1d17db793bc63f2c342016fd0688d921","tarball":"https://registry.npmjs.org/@aigan/polymer-css-compiler/-/polymer-css-compiler-1.0.3.tgz","fileCount":5,"unpackedSize":5040,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHrZ65JBJenLW/Bed7kmtu18mENmdZ+mBAjWRVOAT/jhAiBvd+999IjEUcE44LX0CmEljtsI3X8FFn5JGRGa7qy3xg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjX57BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqAsA/+L3m0UuniMF3PlJbU1Cuznwu0pYIP1MGr1psf1Y7OXqGClEZY\r\nQaQYccORhy6xN6HDSQL1A015UD+HtICHkKqLzIxuNcISjOAhTqDXRGyLeZoR\r\no9sIhDIu3rYp4yErQbIzscJY2fiCh5J4xvQ50h10xbUw11Efeh6sjThauaSj\r\nljARh3Cpm1gcRBeigpGDxtSv5/kc4llQbszf3WFNW99OjN7OC2KOp1n+Rri5\r\nIh3IcyRJPNjNcjt31qEME12zyBclm18XOYOSE8zSFTIHMWMNbCpbi+i9oZPr\r\nPOe7W9YUz8TRAAm2klWK4XR06tj36xCfKQZkTf0C528yIF4xMnS8kA2IuwR/\r\nrq9vtSK/12I5jvLcs+jYuLwmpCCEBvhqkefiDu3UqReaQ3VQtrHp7Lq/i4r4\r\n+MmrzVHNIzRCIHJJjjfbZilZde/TeRidQwgqWGtCI70RG180wvXetGf6TTx3\r\n/HaXtoo/1DwMiElb480u8hChxOxg6oZ6Lekfk7KmJp6pQ87kAiSku3AVF0Lq\r\nxLHqs2I7b0s/fmp790cVNqD+FFACNQVtorcaVJHN4eubNlv0vaFDE6uiJ5oB\r\nNdVBVIM5LZI1SlbRe5rSFTTmCGw4T4sPtOX4CxPGWHtR9nZooGoej91A8KYF\r\nfPmB6GfYLvbJMXaVy7M6d36ut3VpzL2ngUg=\r\n=inbP\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"aigan","email":"jonas@liljegren.org"},"directories":{},"maintainers":[{"name":"aigan","email":"jonas@liljegren.org"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/polymer-css-compiler_1.0.3_1667210945559_0.03202571656451436"},"_hasShrinkwrap":false}},"time":{"created":"2022-10-31T10:09:05.497Z","1.0.3":"2022-10-31T10:09:05.737Z","modified":"2022-10-31T10:09:05.870Z"},"maintainers":[{"name":"aigan","email":"jonas@liljegren.org"}],"description":"Polymer CSS compiler - compile CSS files into polymer style modules","author":{"name":"Roy Velich"},"license":"MIT","readme":"# polymer-css-compiler\nPolymer css compiler - grunt task for compiling CSS files into polymer style modules\n\n## Getting Started\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install polymer-css-compiler --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('polymer-css-compiler');\n```\n\n## Usage Examples\n\n```js\nmodule.exports = function(grunt) {\n    grunt.initConfig({\n        pkg: grunt.file.readJSON('package.json'),\n        'polymer-css-compiler': {\n            default: {\n                files: [{\n                    expand: true,\n                    cwd: 'public/polymer-components',\n                    dest: 'public/polymer-components',\n                    src: '**/*.css',\n                    ext: '.html'\n                }]\n            }\n        }\n    });\n\n    grunt.loadNpmTasks('polymer-css-compiler');\n};\n```\n\nIn the example above, all the CSS files under the path 'public/polymer-components' will be compiled into polymer style modules. Every generated polymer style module will inherit the name of its source CSS file.\n","readmeFilename":"README.md"}