npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-template-webpack-ts-scss

v0.3.2

Published

Cordova basic template using webpack, typescript, and scss

Downloads

9

Readme

cordova-template-webpack-ts-scss 0.3.2

This template is designed to make it easy for you to write ES2015+, TypeScript, and SCSS code, and then bundle that code using webpack v2. It will do this automatically each time you run any Cordova/PhoneGap command that triggers the prepare phase.

Requirements

  • Node v5 or better

  • Cordova / PhoneGap CLI installed

Usage

You can create a project using this template as follows:

$ cordova create hello com.example.hello hello --template cordova-template-webpack-ts-scss

Once the project has been created, you'll need to add a platform, like so:

$ cd hello
$ cordova platform add --save browser

The act of adding a platform will automatically trigger the first prepare, and when the process is finished, the example code supplied with this template will have been transformed automatically.

Project Structure

This template uses an "external" structure for all transformed assets. This means there will be two directories that contain code:

  • www.src — this is where your ES2015+, TypeScript, SCSS files, and all other assets live
  • www — after prepare this will store copied assets and transformed files; you should not make changes to this directory

Within www.src, the following structure is assumed:

www.src/
    index.html                          # your index.html file; app's entry point
    js/                                 # JavaScript files that don't need transpilation
    es/                                 # ES2015+ files
        index.js                        # ... App's javascript entry point
    ts/                                 # TypeScript files; if present overrides es/
        index.ts                        # ... App's typescript entry point; if present overrides es/index.js
    css/                                # CSS stylesheets that don't need transformed
    scss/                               # SCSS stylesheets
        styles.css                      # ... Primary styles; other styles need to be imported
    html/                               # HTML files
    img/                                # Image files
    lib/                                # Library files (perhaps frameworks)
    vendor/                             # Vendor files

Transformations

The following transformations occur just prior to the prepare phase.

Type | Entry Point | Output -----------:|:---------------------------|:------------------ TypeScript | www.src/ts/index.ts | www/js/bundle.js ES2015 | www.src/es/index.js | www/js/bundle.js SCSS | www.src/scss/styles.scss | www/css/bundle.css HTML | www.src/*.html | www/*.html CSS | www.src/css/**/* | www/css/**/* Images | www.src/img/**/* | www/img/**/* JavaScript | www.src/js/**/* | www/js/**/* Lib files | www.src/lib/**/* | www/lib/**/* Vendor files| www.src/vendor/**/* | www/vendor/**/*

The before prepare hook will transpile your code (and copy files when using the external structure). If an error occurs during this process, you'll be notified. If no error occurs, you should see the something that looks like this:

Starting webpack bundling and transpilation phase...
(node:46414) DeprecationWarning: loaderUtils.parseQuery() received a non-string value which can be problematic, see https://github.com/webpack/loader-utils/issues/56
parseQuery() will be replaced with getOptions() in the next major version of loader-utils.
ts-loader: Using [email protected] and /.../example-ts-ext/tsconfig.json
... webpack bundling and typescript transpilation phase complete!
Hash: 76ef6d9645fc284a7a9c
Version: webpack 2.2.1
Time: 1977ms
         Asset     Size  Chunks             Chunk Names
  js/bundle.js  22.6 kB       0  [emitted]  main
css/bundle.css  14.8 kB       0  [emitted]  main
    index.html  2.52 kB          [emitted]
  img/logo.png  21.8 kB          [emitted]

The output indicates that four assets were generated. (The paths are relative to your www folder.) The bundle.* files are transformed from your ES2015+/TypeScript or SCSS files. The other files are files that were copied (this example was from an project using the external structure).

Debug vs Release

The plugin watches for a --release switch on the command line; if it is detected the following occurs:

  • Minification is turned on
  • Sourcemaps are turned off

If you need to change this behavior, you can override it by copying webpack.config.js in your project root to webpack.release.config.js and making the desired changes.

Modifying the configuration files

If you wish to modify webpack.config.js, webpack.release.config.js, or tsconfig.json, you can. The plugin will not attempt to override their contents, and it won't attempt to overwrite the files on a reinstall. If you need to reset these configuration files, delete them and reinstall the plugin.

Built-in Webpack Loaders

The webpack.config.js files come with some useful loaders:

file pattern | loader | example -------------------:|:------------:|:----------------------------- *.json; *.json5 | json5-loader | import pkg from "../../package.json"; *.html; *.txt | raw-loader | import template from "../templates/list-item.html"; *.png; *.jpg; *.svg | file-loader | import icon from "../img/icon.svg"; *.eot; *.ttf; *.woff; *.woff2 | file-loader | import icon from "../img/icon.svg"; — | imports-loader | None; you must specify the rules yourself

If a file pattern you need to import isn't matched with a loader, you can specify the loader directly:

import xml from "raw-loader!../../config.xml";

Built-in asset copying

The following assets will be copied from www.src to www:

*.html
img/**/*
css/**.*
js/**.*
vendor/**.*
lib/**.*
html/**/*

Built-in Module Resolution

The default configurations add the following module resolution paths (relative to project root):

www.src/(es|ts)/lib
www.src/(es|ts)/vendor
www.src/lib
www.src/vendor
node_modules

Built-in Aliases

The default configurations add the following aliases, which may be useful in resolving your app's modules:

Alias | Path ----------------:|:-------------------------------------- $LIB | www.src/lib Lib | www.src/lib $VENDOR | www.src/vendor Vendor | www.src/vendor

License

Apache 2.0.