mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 13:58:08 +00:00
create rollpkg
This commit is contained in:
parent
b29abb5c0b
commit
ed3c8133f3
11 changed files with 11022 additions and 87 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,5 @@
|
|||
node_modules/
|
||||
dist/
|
||||
.next/
|
||||
/ts-openapi/cypress/videos/
|
||||
/ts-openapi/cypress/screenshots/
|
||||
|
|
1
media-capture/.gitignore
vendored
1
media-capture/.gitignore
vendored
|
@ -1 +0,0 @@
|
|||
/node_modules/
|
1
next/.gitignore
vendored
1
next/.gitignore
vendored
|
@ -1,3 +1,2 @@
|
|||
/node_modules/
|
||||
/.next/
|
||||
/docs/
|
||||
|
|
1
playwright/.gitignore
vendored
1
playwright/.gitignore
vendored
|
@ -1,2 +1 @@
|
|||
/node_modules/
|
||||
/screenshots/
|
||||
|
|
18
rollpkg/package.json
Normal file
18
rollpkg/package.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"name": "@kou029w/rollpkg",
|
||||
"version": "1.0.0",
|
||||
"main": "dist/kou029w-rollpkg.cjs.js",
|
||||
"module": "dist/kou029w-rollpkg.esm.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"sideEffects": false,
|
||||
"author": "Kohei Watanabe <kou029w@gmail.com>",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"rollpkg": "^0.2.1",
|
||||
"typescript": "^4.1.3"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollpkg build",
|
||||
"watch": "rollpkg watch"
|
||||
}
|
||||
}
|
1
rollpkg/src/index.ts
Normal file
1
rollpkg/src/index.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export default "Hello! rollpkg";
|
1
rollpkg/tsconfig.json
Normal file
1
rollpkg/tsconfig.json
Normal file
|
@ -0,0 +1 @@
|
|||
{ "extends": "rollpkg/configs/tsconfig.json" }
|
10999
rollpkg/yarn.lock
Normal file
10999
rollpkg/yarn.lock
Normal file
File diff suppressed because it is too large
Load diff
2
ts-openapi/.gitignore
vendored
2
ts-openapi/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
|||
/node_modules/
|
||||
/.next/
|
2
tsdx/.gitignore
vendored
2
tsdx/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
|||
/node_modules/
|
||||
/dist/
|
80
vad/.gitignore
vendored
80
vad/.gitignore
vendored
|
@ -1,80 +0,0 @@
|
|||
### https://raw.github.com/github/gitignore/4a8e0a151becd5ccbb83e4aca6e6c195f3d506fd/Node.gitignore
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# TypeScript v1 declaration files
|
||||
typings/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
|
||||
# next.js build output
|
||||
.next
|
||||
|
||||
# nuxt.js build output
|
||||
.nuxt
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# Serverless directories
|
||||
.serverless
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue