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

[WIP] Add apf build #1995

Closed
wants to merge 10 commits into from
Closed
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,9 @@ lint-results.json
# legacy
!/packages/raven-js/dist
tmp.js
/packages/*/esm5
/packages/*/esmnext
/packages/*/bundles

# ts
*.tsbuildinfo
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"private": true,
"scripts": {
"build": "lerna run --stream --concurrency 1 --sort build",
"build:es5": "lerna run --stream --concurrency 1 --sort build:es5",
"build:esm": "lerna run --stream --concurrency 1 --sort build:esm",
"build": "lerna run --stream --sort build",
"build:esm5": "lerna run --stream --sort build:esm5",
"build:esmnext": "lerna run --stream --sort build:esmnext",
"build:watch": "lerna run build:watch --stream --no-sort --concurrency 9999",
"clean": "lerna run --stream clean",
"fix": "lerna run --stream --concurrency 1 fix",
Expand Down Expand Up @@ -50,6 +50,7 @@
"prettier-check": "^2.0.0",
"replace-in-file": "^3.4.4",
"rimraf": "^2.6.3",
"rollup-plugin-auto-external": "^2.0.0",
"sinon": "^7.2.7",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
Expand Down
31 changes: 21 additions & 10 deletions packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@
"engines": {
"node": ">=6"
},
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"module": "./bundles/browser.fesm5.js",
"esnext": "./bundles/browser.fesmnext.js",
"esm5": "./esm5/index.js",
"esmnext": "./esmnext/index.js",
"fesm5": "./bundles/browser.fesm5.js",
"fesmnext": "./bundles/browser.fesmnext.js",
"jsnext:main": "./esmnext/index.js",
"main": "./bundles/browser.js",
"typings": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -47,22 +53,27 @@
"rollup-plugin-license": "^0.8.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-typescript2": "^0.21.0",
"sinon": "^7.2.7",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6"
},
"scripts": {
"build": "run-s build:dist build:esm build:bundle",
"build": "run-s build:split build:bundle",
"build:split": "run-p build:dist build:esm5 build:esmnext",
"build:bundle": "rollup --config",
"build:bundle:watch": "rollup --config --watch",
"build:dist": "tsc -p tsconfig.build.json",
"build:dist:watch": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
"build:esm": "tsc -p tsconfig.esm.json",
"build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
"build:watch": "run-p build:dist:watch build:esm:watch build:bundle:watch",
"clean": "rimraf dist coverage .rpt2_cache build esm",
"build:esm5": "tsc -p tsconfig.esm5.json",
"build:esmnext": "tsc -p tsconfig.esmnext.json",
"build:watch": "run-s build:split build:watch:loop",
"build:watch:loop": "run-p build:watch:dist build:watch:esm5 build:watch:esmnext build:watch:bundle",
"build:watch:bundle": "rollup --config --watch",
"build:watch:dist": "tsc -wp tsconfig.build.json",
"build:watch:esm5": "tsc -wp tsconfig.esm5.json",
"build:watch:esmnext": "tsc -wp tsconfig.esmnext.json",
"clean": "rimraf dist esm5 esmnext bundles coverage .rpt2_cache build esm",
"link:yarn": "yarn link",
"lint": "run-s lint:prettier lint:tslint",
"lint:prettier": "prettier-check \"{src,test}/**/*.ts\"",
Expand Down
79 changes: 11 additions & 68 deletions packages/browser/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { terser } from 'rollup-plugin-terser';
import typescript from 'rollup-plugin-typescript2';
import commonjs from 'rollup-plugin-commonjs';
import license from 'rollup-plugin-license';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import { terser } from 'rollup-plugin-terser';
import typescript from 'rollup-plugin-typescript2';
import { generate_cfg, paths } from '../../resources/rollup.base';

const commitHash = require('child_process')
.execSync('git rev-parse --short HEAD', { encoding: 'utf-8' })
Expand All @@ -11,7 +12,7 @@ const commitHash = require('child_process')
const terserInstance = terser({
mangle: {
// captureExceptions and captureMessage are public API methods and they don't need to be listed here
// as mangler doesn't touch user-facing thing, however sentryWrapepd is not, and it would be mangled into a minified version.
// as mangler doesn't touch user-facing thing, however sentryWrapped is not, and it would be mangled into a minified version.
// We need those full names to correctly detect our internal frames for stripping.
// I listed all of them here just for the clarity sake, as they are all used in the frames manipulation process.
reserved: ['captureException', 'captureMessage', 'sentryWrapped'],
Expand All @@ -21,31 +22,22 @@ const terserInstance = terser({
},
});

const paths = {
'@sentry/utils': ['../utils/src'],
'@sentry/core': ['../core/src'],
'@sentry/hub': ['../hub/src'],
'@sentry/types': ['../types/src'],
'@sentry/minimal': ['../minimal/src'],
};

const plugins = [
typescript({
tsconfig: 'tsconfig.build.json',
tsconfigOverride: {
compilerOptions: {
declaration: false,
declarationMap: false,
module: 'ES2015',
paths,
},
},
include: ['*.ts+(|x)', '**/*.ts+(|x)', '../**/*.ts+(|x)'],
}),
resolve({
module: true,
browser: false,
modulesOnly: false,
browser: true,
module: false,
modulesOnly: true,
}),
commonjs(),
];
Expand All @@ -72,69 +64,20 @@ export default [
...bundleConfig,
output: {
...bundleConfig.output,
file: 'build/bundle.js',
file: 'bundles/bundle.js',
},
},
{
...bundleConfig,
output: {
...bundleConfig.output,
file: 'build/bundle.min.js',
file: 'bundles/bundle.min.js',
},
// Uglify has to be at the end of compilation, BUT before the license banner
plugins: bundleConfig.plugins
.slice(0, -1)
.concat(terserInstance)
.concat(bundleConfig.plugins.slice(-1)),
},
{
...bundleConfig,
output: {
...bundleConfig.output,
file: 'build/bundle.es6.js',
},
plugins: [
typescript({
tsconfig: 'tsconfig.build.json',
tsconfigOverride: {
compilerOptions: {
declaration: false,
declarationMap: false,
module: 'ES2015',
paths,
target: 'es6',
},
},
include: ['*.ts+(|x)', '**/*.ts+(|x)', '../**/*.ts+(|x)'],
}),
...plugins.slice(1),
],
},
{
...bundleConfig,
output: {
...bundleConfig.output,
file: 'build/bundle.es6.min.js',
},
plugins: [
typescript({
tsconfig: 'tsconfig.build.json',
tsconfigOverride: {
compilerOptions: {
declaration: false,
declarationMap: false,
module: 'ES2015',
paths,
target: 'es6',
},
},
include: ['*.ts+(|x)', '**/*.ts+(|x)', '../**/*.ts+(|x)'],
}),
...plugins
.slice(1)
.slice(0, -1)
.concat(terserInstance)
.concat(bundleConfig.plugins.slice(-1)),
],
},
...generate_cfg('browser'),
];
7 changes: 6 additions & 1 deletion packages/browser/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist"
"outDir": "dist",
"paths": {
"@sentry/*": [
"../*/dist"
]
}
},
"include": ["src/**/*"]
}
8 changes: 0 additions & 8 deletions packages/browser/tsconfig.esm.json

This file was deleted.

13 changes: 13 additions & 0 deletions packages/browser/tsconfig.esm5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../../tsconfig.esm5.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "esm5",
"paths": {
"@sentry/*": [
"../*/esm5"
]
}
},
"include": ["src/**/*"]
}
13 changes: 13 additions & 0 deletions packages/browser/tsconfig.esmnext.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../../tsconfig.esmnext.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "esmnext",
"paths": {
"@sentry/*": [
"../*/esmnext"
]
}
},
"include": ["src/**/*"]
}
7 changes: 6 additions & 1 deletion packages/browser/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"exclude": ["dist"],
"compilerOptions": {
"rootDir": ".",
"types": ["node", "mocha", "chai", "sinon"]
"types": ["node", "mocha", "chai", "sinon"],
"paths": {
"@sentry/*": [
"../*/src"
]
}
}
}
29 changes: 21 additions & 8 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
"node": ">=6"
},
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"module": "./bundles/core.fesm5.js",
"esnext": "./bundles/core.fesmnext.js",
"esm5": "./esm5/index.js",
"esmnext": "./esmnext/index.js",
"fesm5": "./bundles/core.fesm5.js",
"fesmnext": "./bundles/core.fesmnext.js",
"jsnext:main": "./esmnext/index.js",
"typings": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
Expand All @@ -28,16 +34,23 @@
"prettier": "^1.16.4",
"prettier-check": "^2.0.0",
"rimraf": "^2.6.3",
"rollup-plugin-typescript2": "^0.21.0",
"tslint": "^5.14.0",
"typescript": "^3.3.3333"
},
"scripts": {
"build": "run-p build:es5 build:esm",
"build:es5": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:watch": "run-p build:watch:es5 build:watch:esm",
"build:watch:es5": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
"build:watch:esm": "tsc -p tsconfig.esm.json -w --preserveWatchOutput",
"build": "run-s build:split build:bundle",
"build:split": "run-p build:dist build:esm5 build:esmnext",
"build:bundle": "rollup --config",
"build:dist": "tsc -p tsconfig.build.json",
"build:esm5": "tsc -p tsconfig.esm5.json",
"build:esmnext": "tsc -p tsconfig.esmnext.json",
"build:watch": "run-s build:split build:watch:loop",
"build:watch:loop": "run-p build:watch:dist build:watch:esm5 build:watch:esmnext build:watch:bundle",
"build:watch:bundle": "rollup --config --watch",
"build:watch:dist": "tsc -wp tsconfig.build.json",
"build:watch:esm5": "tsc -wp tsconfig.esm5.json",
"build:watch:esmnext": "tsc -wp tsconfig.esmnext.json",
"clean": "rimraf dist coverage",
"link:yarn": "yarn link",
"lint": "run-s lint:prettier lint:tslint",
Expand Down
5 changes: 5 additions & 0 deletions packages/core/rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { generate_cfg } from '../../resources/rollup.base';

export default [
...generate_cfg('core'),
];
11 changes: 9 additions & 2 deletions packages/core/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist"
"outDir": "dist",
"paths": {
"@sentry/*": [
"../*/dist"
]
}
},
"include": ["src/**/*"]
"include": [
"src/**/*"
]
}
8 changes: 0 additions & 8 deletions packages/core/tsconfig.esm.json

This file was deleted.

13 changes: 13 additions & 0 deletions packages/core/tsconfig.esm5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../../tsconfig.esm5.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "esm5",
"paths": {
"@sentry/*": [
"../*/esm5"
]
}
},
"include": ["src/**/*"]
}
13 changes: 13 additions & 0 deletions packages/core/tsconfig.esmnext.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": "../../tsconfig.esmnext.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "esmnext",
"paths": {
"@sentry/*": [
"../*/esmnext"
]
}
},
"include": ["src/**/*"]
}
7 changes: 6 additions & 1 deletion packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"exclude": ["dist"],
"compilerOptions": {
"rootDir": ".",
"types": ["node", "jest"]
"types": ["node", "jest"],
"paths": {
"@sentry/*": [
"../*/src"
]
}
}
}
Loading