mirror of
https://github.com/bitwarden/browser
synced 2026-01-08 11:33:28 +00:00
remove rollup and just build for es
This commit is contained in:
21
package.json
21
package.json
@@ -1,34 +1,25 @@
|
||||
{
|
||||
"name": "@bitwarden/jslib",
|
||||
"version": "0.0.11",
|
||||
"version": "0.0.12",
|
||||
"description": "Common code used across bitwarden JavaScript projects.",
|
||||
"keywords": [
|
||||
"bitwarden"
|
||||
],
|
||||
"main": "dist/index.umd.js",
|
||||
"module": "dist/index.es5.js",
|
||||
"module": "dist/es/index.js",
|
||||
"typings": "dist/types/index.d.ts",
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"license": "GPL-3.0",
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "tslint 'src/**/*.ts'",
|
||||
"prebuild": "rimraf dist/**/*",
|
||||
"build": "tsc && tsc --module commonjs --outDir dist/lib && rollup -c rollup.config.ts && typedoc --out dist/docs --target es6 --theme minimal --mode file src",
|
||||
"start": "concurrently \"tsc -w\" \"rollup -c rollup.config.ts -w\""
|
||||
"build": "tsc && typedoc --out dist/docs --target es6 --theme minimal --mode file src",
|
||||
"start": "tsc -watch",
|
||||
"lint": "tslint src/**/*.ts || true",
|
||||
"lint:fix": "tslint src/**/*.ts --fix"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^8.0.0",
|
||||
"concurrently": "^3.5.1",
|
||||
"rimraf": "^2.6.2",
|
||||
"rollup": "^0.53.0",
|
||||
"rollup-plugin-commonjs": "^8.2.6",
|
||||
"rollup-plugin-node-resolve": "^3.0.0",
|
||||
"rollup-plugin-sourcemaps": "^0.4.2",
|
||||
"tslint": "^5.8.0",
|
||||
"typedoc": "^0.9.0",
|
||||
"typescript": "^2.6.2"
|
||||
|
||||
Reference in New Issue
Block a user