Browse Source

Issue #805: added buildTm script and related webpack config

cycle20 1 year ago
parent
commit
69b8ea9129
2 changed files with 60 additions and 0 deletions
  1. 1 0
      package.json
  2. 59 0
      webpack.tm-saguaro.config.js

+ 1 - 0
package.json

@@ -11,6 +11,7 @@
     "devServer": "webpack-dev-server --config webpack.server.dev.config.js",
     "tsc": "tsc --incremental",
     "build": "webpack --config ./webpack.config.js",
+    "buildTm": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && webpack --config ./webpack.tm-saguaro.config.js",
     "buildAll": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && npm run copyConfig && npm run copyDef && npm run build && npm run buildDoc",
     "buildApp": "npm run cleanAll && npm run tsc && npm run cpStyles && npm run mkDist && npm run copyConfig && npm run copyDef && npm run build",
     "cpStyles": "ncp src/styles lib/styles",

+ 59 - 0
webpack.tm-saguaro.config.js

@@ -0,0 +1,59 @@
+const path = require('path');
+
+const commonConfig = {
+    mode:"production",
+    module: {
+      rules: [
+          {
+              test: /\.(html|ico)$/,
+              use: [{
+                  loader: 'file-loader',
+                  options: { name: '[name].[ext]' }
+              }]
+          },{
+              test: /\.scss$/,
+              use: [
+                  'style-loader',
+                  {
+                      loader: 'css-loader',
+                      options: {
+                          modules: {
+                              localIdentName:'[local]'
+                          }
+                      }
+                  },
+                  'sass-loader'
+              ]
+          }
+      ]
+    },
+    resolve: {
+        modules: [
+            'node_modules',
+            path.resolve(__dirname, 'build/src/')
+        ],
+        fallback: {
+            fs: false,
+            buffer: require.resolve('buffer'),
+            crypto: require.resolve('crypto-browserify'),
+            path: require.resolve('path-browserify'),
+            stream: require.resolve('stream-browserify')
+        }
+    }
+};
+
+const out_path = "build/examples";
+const examples = [];
+
+examples.push({
+    ...commonConfig,
+    entry: {
+        "tm-saguaro": './lib/examples/assembly-tm/index.js'
+    },
+    output: {
+        filename: '[name].js',
+        path: path.resolve(__dirname, out_path+'/assembly-tm/')
+    }
+});
+
+module.exports = examples;