![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
knockout-webpack-ts-quickstart
Advanced tools
Quickstart project for knockout.js + TypeScript + decorators with Webpack2.
Quickstart project for knockout.js + TypeScript + decorators with Webpack2.
src/app/AppModule.ts
and src/app/components/*Component.ts
.See legacy-ie-fix branch.
package.json
.webpack.config.js
.
// [Node-single-js-file]: Packing a Node single Javascript file.
{
entry: {
// TODO: YOU SHOULD REPLACE THE LIBRARY OUTPUT NAME!
<your-output-name>: path.resolve(__dirname, 'src/index.ts')
},
output: {
// TODO: YOU SHOULD REPLACE THE LIBRARY NAME!
library: '<your-library-name>',
...
},
module: {
rules: [{
test: /\.tsx?$/,
...
// TODO: YOU SHOULD REPLACE THE PACKAGE NAME!
// exclude 'node_module' directory except myself (refered from other packages)
exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/
}, {
test: /\.jsx?$/,
...
// TODO: YOU SHOULD REPLACE THE PACKAGE NAME!
// exclude 'node_module' directory except myself (refered from other packages)
exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/
}, {
...
},
// [Browser-single-js-file]: Packing a library Javascript file.
{
entry: {
// TODO: YOU SHOULD REPLACE THE LIBRARY OUTPUT NAME!
<your-output-name>: path.resolve(__dirname, 'src/index.ts')
},
output: {
// TODO: YOU SHOULD REPLACE THE LIBRARY NAME!
library: '<your-library-name>',
...
},
module: {
rules: [{
test: /\.tsx?$/,
...
// TODO: YOU SHOULD REPLACE THE PACKAGE NAME!
// exclude 'node_module' directory except myself (refered from other packages)
exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/
}, {
test: /\.jsx?$/,
...
// TODO: YOU SHOULD REPLACE THE PACKAGE NAME!
// exclude 'node_module' directory except myself (refered from other packages)
exclude: /node_modules[\/\\](?!knockout-webpack-ts-quickstart).*$/
}, {
...
},
npm run build
npm test
git clone shellyln/knockout-webpack-ts-quickstart.git
npm run build
npm test
dist/style.min.css
and dist/style.min.css.map
to your site.app.html
<head>
<link rel="stylesheet" type="text/css" href="path/to/style.min.css">
</head>
npm start
MIT
FAQs
Quickstart project for knockout.js + TypeScript + decorators with Webpack2.
We found that knockout-webpack-ts-quickstart demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.