nativescript-dev-webpack
nativescript-dev-webpack copied to clipboard
A package to help with webpacking NativeScript apps.
Styles of the following type (element selector) are not applied when building with **uglify** ```CSS CardView { background-color: slateblue; } CardView > GridLayout { background-color: green; } ``` The cardview...
**Environment** Provide version numbers for the following components (information can be retrieved by running `tns info` in your project folder or by inspecting the `package.json` of the project): - CLI:...
I did update tns to version 5.4 and I tried to run the test with the project created by nativescript cli. However, karma did not work in the browser. The...
**Environment** Provide version numbers for the following components (information can be retrieved by running `tns info` in your project folder or by inspecting the `package.json` of the project): - CLI:...
This happens with all versions of ```nativescript-dev-webpack``` I am trying to use [pnpn](https://pnpm.js.org) with {N}. PNPM is a great tool when you work with a lot of npm projects using...
**Is your feature request related to a problem? Please describe.** Allowing the Webpack configuration file to be type checked. **Describe the solution you'd like** It seems that webpack allows different...
**Environment** Provide version numbers for the following components (information can be retrieved by running `tns info` in your project folder or by inspecting the `package.json` of the project): - CLI:...
**Is your feature request related to a problem? Please describe.** `vendor.js` file contains all dependencies from `node_modules`. This makes the file really huge and slow for parsing during application startup....
**Environment** - CLI: 5.1.1 [webpack.config.js](https://gist.github.com/alereisan/14748e2e78ec6dac96f58764d20ce1a3) [package.json](https://gist.github.com/alereisan/8e03ee22a36214179913a1161569eb38) Bug description: I have successfully built and debugged the application with webpack in debug mode. When I do a release build with webpack option...
Create an app by `tns create MY_PROJECT --template tns-template-hello-world-ng`, setup `nativescript-dev-webpack`, and simply change [this line](https://github.com/NativeScript/template-hello-world-ng/blob/master/app.routing.ts#L5) from ``` import { ItemsComponent } from "./item/items.component"; ``` to ``` import { ItemsComponent...