Skip to content

Commit

Permalink
Merge pull request #5 from kanamone/remove-monorepo
Browse files Browse the repository at this point in the history
Byebye monorepo
  • Loading branch information
himanoa authored Oct 30, 2023
2 parents ed84b22 + fb2e119 commit 2ee4a1c
Show file tree
Hide file tree
Showing 11 changed files with 53 additions and 62 deletions.
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.

0 comments on commit 2ee4a1c

Please sign in to comment.