| 更新: | 2023-12-08 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2023.2 |
| URL: | https://voluntas.github.io/ |
タイポなどは Twitter の @voluntas までお願いします。
| 更新: | 2023-12-08 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2023.2 |
| URL: | https://voluntas.github.io/ |
タイポなどは Twitter の @voluntas までお願いします。
| ... | |
| Beautifier.prototype.beautify = function() { | |
| ... | |
| var source_text = this._source_text; | |
| // BEGIN | |
| source_text = source_text.replace(/\{\{(--)?((?:(?!(--)?\}\}).)+)(--)?\}\}/g, function(m, ds, c, dh, de) { |
https://battle-saga-jp.connpass.com/event/142700/ の発表資料
今日の webpack.config.js はこちら
https://gist.github.com/mizchi/0af8dee5c682a0f9ef8470a089ec41b9
注意: この記事中で出るもののうち、 まだ CDN でのサードパーティモードの publish に成功してない (localhost では動いた…)
| const path = require("path"); | |
| const { CleanWebpackPlugin } = require("clean-webpack-plugin"); | |
| const HTMLPlugin = require("html-webpack-plugin"); | |
| const WorkerPlugin = require("worker-plugin"); | |
| const CopyPlugin = require("copy-webpack-plugin"); | |
| const { GenerateSW } = require("workbox-webpack-plugin"); | |
| const tsLoader = { | |
| loader: "ts-loader", | |
| options: { |
| ... | |
| Beautifier.prototype.beautify = function() { | |
| ... | |
| var source_text = this._source_text; | |
| // BEGIN | |
| source_text = source_text.replace(/\{\{(--)?((?:(?!(--)?\}\}).)+)(--)?\}\}/g, function(m, ds, c, dh, de) { |
| import Amplify from 'aws-amplify'; | |
| import aws_exports from './aws-exports'; | |
| import { withAuthenticator } from 'aws-amplify-react'; | |
| import { I18n } from 'aws-amplify'; | |
| Amplify.configure(aws_exports); | |
| const dict = { | |
| 'ja': { | |
| 'User does not exist.': "ユーザー名またはパスワードが正しくありません", |
| public class ProductReadModel | |
| { | |
| public ProductReadModel(ProductAddedEvent @event) | |
| { | |
| Id = @event.Id; | |
| Name = @event.Name; | |
| CategoryId = @event.CategoryId; | |
| OrderAmount = 0; | |
| Review = new ReviewReadModel(); |
These are the steps I went through to set up an SSL cert. Purchase the cert
Prior to purchasing a cert, you need to generate a private key, and a CSR file (Certificate Signing Request). You’ll be asked for the content of the CSR file when ordering the certificate:
openssl req -new -newkey rsa:2048 -nodes -keyout example_com.key -out example_com.csr
対応バージョン: 3.7.2218.55