npm install --save-dev rimraf
scripts {
clean: "rimraf ./some/directory"
}
| // original | |
| // https://github.com/colinhacks/zod/blob/792b3ef0d41c144cd10641c6966b98dae1222d82/src/locales/en.ts | |
| // MIT License | |
| // Copyright (c) 2020 Colin McDonnell | |
| // reference | |
| // https://github.com/aiji42/zod-i18n/blob/07067fbc9193d0a2d25c9ba3bd5911d6d67c8878/packages/core/locales/ja/zod.json | |
| // MIT License | |
| // Copyright (c) 2021 AijiUejima |
| { | |
| "configurations": [ | |
| { | |
| "type": "java", | |
| "name": "Backend", | |
| "request": "launch", | |
| "cwd": "${workspaceFolder}", | |
| "console": "internalConsole", | |
| "mainClass": "/set.your.java.main.class/", | |
| "projectName": "backend", |
| git init | |
| git config core.sparsecheckout true | |
| git remote add origin リポジトリのURL | |
| echo set/your/taret/directory/ > .git/info/sparse-checkout | |
| git pull origin master |
| git archive --format zip -o mail.zip head $(git diff --name-only abcde..fghij) |
| const ConcatSource = require("webpack-sources").ConcatSource; | |
| const corejsBuilder = require("core-js-builder"); | |
| function CoreJsBuildPlugin(options) { | |
| this.options = options || { entry: {} }; | |
| } | |
| CoreJsBuildPlugin.prototype.apply = function CoreJsBuildPlugin(compiler) { | |
| const self = this; |
| { | |
| "name": "webpack-jquery-bootstrap-fontawesome", | |
| "version": "0.0.1", | |
| "private": true, | |
| "devDependencies": { | |
| "autoprefixer": "^7.1.5", | |
| "bootstrap": "4.0.0-beta", | |
| "css-loader": "^0.28.7", | |
| "expose-loader": "^0.7.3", | |
| "extract-text-webpack-plugin": "^3.0.1", |
import ns from "./namespace";
const internal = ns();
class ClassName {
constructor() {
internal(this).userName = "Foo";| public static IEnumerable<T> Action<T>(this IEnumerable<T> source, Action<T> onNext) | |
| { | |
| if (source == null) throw new ArgumentNullException(nameof(source)); | |
| if (onNext == null) throw new ArgumentNullException(nameof(onNext)); | |
| return Action_(source, onNext, e => { }, () => { }); | |
| } | |
| public static IEnumerable<T> Action<T>(this IEnumerable<T> source, Action<T> onNext, Action<Exception> onError) | |
| { |