Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Byebye monorepo #5

Merged
merged 2 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/js-scrambler-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn workspace @kanamone/js-scrambler run lint
- run: yarn run lint
4 changes: 2 additions & 2 deletions .github/workflows/js-scrambler-publint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn workspace @kanamone/js-scrambler run build
- run: yarn workspace @kanamone/js-scrambler run publint
- run: yarn run build
- run: yarn run publint
2 changes: 1 addition & 1 deletion .github/workflows/js-scrambler-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn workspace @kanamone/js-scrambler run test
- run: yarn run test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
packages/*/dist
dist
node_modules
54 changes: 48 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,51 @@
{
"name": "js-scrambler-root",
"name": "@kanamone/js-scrambler",
"version": "0.0.5",
"description": "Converts an integer to another integer that is unpredictable and reversible.",
"private": true,
"workspaces": [
"packages/js-scrambler"
]
"repository": "https://github.com/kanamone/js-scrambler",
"author": "AOKI Yuto <aoki@u-ne.co>",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"node": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "vitest run",
"build": "tsup src/index.ts",
"lint": "eslint -c .eslintrc.yml",
"publint": "publint",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"Scrambler"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"publint": "0.2.5",
"ts-node": "^10.1.0",
"tsup": "7.2.0",
"typescript": "^4.3.5",
"vitest": "0.34.6"
}
}
51 changes: 0 additions & 51 deletions packages/js-scrambler/package.json

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading